1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-14 04:29:15 +01:00

[dxvk] Don't use secondary command buffers on desktop drivers

Effectively reverts 84f2939b55cd4ce93ba76b08ec049eb5b0250003.

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.
This commit is contained in:
Philip Rebohle 2025-03-09 22:51:57 +01:00
parent 443e7cc99d
commit 66c0c8303f

View File

@ -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;
}