mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[dxvk] Enable uniformBufferStandardLayout feature
Core and required in Vulkan 1.2, but keep it optional anyway for now since we're not really doing anything critical with it.
This commit is contained in:
parent
ec5bd04378
commit
2cd305e606
1 changed files with 4 additions and 0 deletions
|
@ -353,6 +353,10 @@ namespace dxvk {
|
||||||
// Required for proper GPU synchronization
|
// Required for proper GPU synchronization
|
||||||
enabledFeatures.vk12.timelineSemaphore = VK_TRUE;
|
enabledFeatures.vk12.timelineSemaphore = VK_TRUE;
|
||||||
|
|
||||||
|
// Used for better constant array packing in some cases
|
||||||
|
enabledFeatures.vk12.uniformBufferStandardLayout =
|
||||||
|
m_deviceFeatures.vk12.uniformBufferStandardLayout;
|
||||||
|
|
||||||
// Only enable the base image robustness feature if robustness 2 isn't
|
// Only enable the base image robustness feature if robustness 2 isn't
|
||||||
// supported, since this is only a subset of what we actually want.
|
// supported, since this is only a subset of what we actually want.
|
||||||
enabledFeatures.vk13.robustImageAccess =
|
enabledFeatures.vk13.robustImageAccess =
|
||||||
|
|
Loading…
Add table
Reference in a new issue