mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-16 16:21:03 +00:00
vk: Disable robust buffer access for ANV
- Robust access is nice, but we don't actually need it
This commit is contained in:
parent
086afbbaa5
commit
bec3e156fb
@ -554,6 +554,14 @@ namespace vk
|
||||
}
|
||||
#endif
|
||||
|
||||
if (pgpu->get_driver_vendor() == driver_vendor::ANV &&
|
||||
pgpu->descriptor_update_after_bind_mask & (1 << VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER))
|
||||
{
|
||||
// Just disable robust access for now. I'll revisit after ARC launches.
|
||||
rsx_log.error("Robust buffer access is broken when enabled with EXT_descriptor_indexing on ANV");
|
||||
enabled_features.robustBufferAccess = VK_FALSE;
|
||||
}
|
||||
|
||||
VkDeviceCreateInfo device = {};
|
||||
device.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
|
||||
device.pNext = nullptr;
|
||||
|
Loading…
Reference in New Issue
Block a user