mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Enable sparse binding features if supported
This commit is contained in:
parent
ff8378be19
commit
634f38b38d
1 changed files with 6 additions and 0 deletions
|
@ -326,6 +326,12 @@ namespace dxvk {
|
|||
// Always enable robust buffer access
|
||||
enabledFeatures.core.features.robustBufferAccess = VK_TRUE;
|
||||
|
||||
// Always enable sparse residency if we can use it for efficient zero-initialization
|
||||
if (m_deviceInfo.core.properties.sparseProperties.residencyNonResidentStrict) {
|
||||
enabledFeatures.core.features.sparseBinding = m_deviceFeatures.core.features.sparseBinding;
|
||||
enabledFeatures.core.features.sparseResidencyBuffer = m_deviceFeatures.core.features.sparseResidencyBuffer;
|
||||
}
|
||||
|
||||
// Always enable features used by the HUD
|
||||
enabledFeatures.core.features.multiDrawIndirect = VK_TRUE;
|
||||
enabledFeatures.vk11.shaderDrawParameters = VK_TRUE;
|
||||
|
|
Loading…
Add table
Reference in a new issue