mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 23:28:06 +02:00
radv: do not expose ImageFloat32AtomicMinMax on GFX11_5
These opcodes aren't supported on GFX11-11.5. Cc: mesa-stable Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30225>
This commit is contained in:
parent
eff0998064
commit
1c5779250b
1 changed files with 2 additions and 2 deletions
|
|
@ -726,8 +726,8 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
|
|||
const struct radv_instance *instance = radv_physical_device_instance(pdev);
|
||||
bool taskmesh_en = radv_taskmesh_enabled(pdev);
|
||||
bool has_perf_query = radv_perf_query_supported(pdev);
|
||||
bool has_shader_image_float_minmax =
|
||||
pdev->info.gfx_level != GFX8 && pdev->info.gfx_level != GFX9 && pdev->info.gfx_level != GFX11;
|
||||
bool has_shader_image_float_minmax = pdev->info.gfx_level != GFX8 && pdev->info.gfx_level != GFX9 &&
|
||||
pdev->info.gfx_level != GFX11 && pdev->info.gfx_level != GFX11_5;
|
||||
bool has_fragment_shader_interlock = radv_has_pops(pdev);
|
||||
|
||||
*features = (struct vk_features){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue