mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 02:48:06 +02:00
radv: disable AMD_shader_explicit_vertex_parameter on GFX11
Not supported by ACO. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19230>
This commit is contained in:
parent
c18e39ebca
commit
897adcf7d7
1 changed files with 2 additions and 1 deletions
|
|
@ -621,7 +621,8 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
|
|||
.AMD_shader_ballot = true,
|
||||
.AMD_shader_core_properties = true,
|
||||
.AMD_shader_core_properties2 = true,
|
||||
.AMD_shader_explicit_vertex_parameter = true,
|
||||
/* TODO: Figure out if it's possible to implement it on gfx11. */
|
||||
.AMD_shader_explicit_vertex_parameter = device->rad_info.gfx_level < GFX11,
|
||||
.AMD_shader_fragment_mask = device->rad_info.gfx_level < GFX11,
|
||||
.AMD_shader_image_load_store_lod = true,
|
||||
.AMD_shader_trinary_minmax = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue