mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
vk: Fix device fault extension loading
This commit is contained in:
parent
883529eaf3
commit
7b6a672c64
1 changed files with 5 additions and 0 deletions
|
@ -524,6 +524,11 @@ namespace vk
|
||||||
requested_extensions.push_back(VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME);
|
requested_extensions.push_back(VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (pgpu->optional_features_support.extended_device_fault)
|
||||||
|
{
|
||||||
|
requested_extensions.push_back(VK_EXT_DEVICE_FAULT_EXTENSION_NAME);
|
||||||
|
}
|
||||||
|
|
||||||
enabled_features.robustBufferAccess = VK_TRUE;
|
enabled_features.robustBufferAccess = VK_TRUE;
|
||||||
enabled_features.fullDrawIndexUint32 = VK_TRUE;
|
enabled_features.fullDrawIndexUint32 = VK_TRUE;
|
||||||
enabled_features.independentBlend = VK_TRUE;
|
enabled_features.independentBlend = VK_TRUE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue