mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 22:41:25 +12:00
vk: Disable texel buffer update-after-bind on NVIDIA driver
This commit is contained in:
parent
84a4cc01e1
commit
5cfa9fd83e
1 changed files with 6 additions and 0 deletions
|
@ -150,6 +150,12 @@ namespace vk
|
||||||
// v3dv and PanVK support BC1-BC3 which is all we require, support is reported as false since not all formats are supported
|
// v3dv and PanVK support BC1-BC3 which is all we require, support is reported as false since not all formats are supported
|
||||||
optional_features_support.texture_compression_bc = features.textureCompressionBC
|
optional_features_support.texture_compression_bc = features.textureCompressionBC
|
||||||
|| get_driver_vendor() == driver_vendor::V3DV || get_driver_vendor() == driver_vendor::PANVK;
|
|| get_driver_vendor() == driver_vendor::V3DV || get_driver_vendor() == driver_vendor::PANVK;
|
||||||
|
|
||||||
|
// Texel buffer UAB is reported to the trigger for some driver crashes on NV
|
||||||
|
if (get_driver_vendor() == driver_vendor::NVIDIA)
|
||||||
|
{
|
||||||
|
descriptor_indexing_support.update_after_bind_mask &= ~(1ull << VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void physical_device::get_physical_device_properties(bool allow_extensions)
|
void physical_device::get_physical_device_properties(bool allow_extensions)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue