Skip to content

Commit

Permalink
[dxvk] Don't use secondary command buffers on desktop drivers
Browse files Browse the repository at this point in the history
Effectively reverts 84f2939.

Apparently this not only breaks on ANV but also causes problems on
RADV for unknown reasons, so enabling this path by default does not
actually seem to be viable.
  • Loading branch information
doitsujin committed Mar 9, 2025
1 parent 443e7cc commit fd9b561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dxvk/dxvk_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ namespace dxvk {

// Be less aggressive on secondary command buffer usage on
// drivers that do not natively support them
hints.preferPrimaryCmdBufs = m_adapter->matchesDriver(VK_DRIVER_ID_MESA_HONEYKRISP);
hints.preferPrimaryCmdBufs = m_adapter->matchesDriver(VK_DRIVER_ID_MESA_HONEYKRISP) || !tilerMode;
return hints;
}

Expand Down

0 comments on commit fd9b561

Please sign in to comment.