tu: enable storageBuffer8BitAccess on all a7xx hardware
Move the enabled storage_8bit property toggle into the base a7xx GPUProps class. This enables storageBuffer8BitAccess Vulkan feature on all a7xx hardware, much like the proprietary driver does. It's also a required feature with Vulkan 1.4. Fixes: dEQP-VK.info.device_mandatory_features on pre-a750 a7xx hardware. Signed-off-by: Zan Dobersek <zdobersek@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39124>
This commit is contained in:
parent
dcd364ef3f
commit
fd18304e9f
1 changed files with 1 additions and 1 deletions
|
|
@ -960,6 +960,7 @@ a7xx_base = GPUProps(
|
|||
has_z24uint_s8uint = True,
|
||||
tess_use_shared = True,
|
||||
storage_16bit = True,
|
||||
storage_8bit = True,
|
||||
has_tex_filter_cubic = True,
|
||||
has_separate_chroma_filter = True,
|
||||
has_sample_locations = True,
|
||||
|
|
@ -1029,7 +1030,6 @@ a7xx_gen3 = GPUProps(
|
|||
has_generic_clear = True,
|
||||
r8g8_faulty_fast_clear_quirk = True,
|
||||
gs_vpc_adjacency_quirk = True,
|
||||
storage_8bit = True,
|
||||
ubwc_all_formats_compatible = True,
|
||||
has_compliant_dp4acc = True,
|
||||
ubwc_coherency_quirk = True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue