1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 11:52:12 +01:00

[d3d11] Do not enable shaderStorageImageMultisample device feature

See https://github.com/KhronosGroup/MoltenVK/issues/502
This commit is contained in:
Philip Rebohle 2019-02-19 11:31:35 +01:00
parent 2d81decb91
commit 20ea74fa99
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -1401,7 +1401,6 @@ namespace dxvk {
enabled.core.features.multiDrawIndirect = supported.core.features.multiDrawIndirect;
enabled.core.features.shaderFloat64 = supported.core.features.shaderFloat64;
enabled.core.features.shaderInt64 = supported.core.features.shaderInt64;
enabled.core.features.shaderStorageImageMultisample = supported.core.features.shaderStorageImageMultisample;
enabled.core.features.shaderStorageImageWriteWithoutFormat = VK_TRUE;
enabled.core.features.tessellationShader = VK_TRUE;
}