From 38892cb55829f991aef6bdecc262cb36e597039a Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 2 Oct 2025 14:20:27 +0200 Subject: [PATCH] radv: only expose AMD_device_coherent_memory if actually supported This fixes an issue after a recent update to dEQP-VK.info.device_mandatory_features. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index 4f68a3b005b..10cc1ca6637 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -770,7 +770,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device .EXT_ycbcr_image_arrays = true, .EXT_zero_initialize_device_memory = true, .AMD_buffer_marker = true, - .AMD_device_coherent_memory = true, + .AMD_device_coherent_memory = pdev->info.has_l2_uncached, .AMD_draw_indirect_count = true, .AMD_gcn_shader = true, .AMD_gpu_shader_half_float = pdev->info.has_packed_math_16bit,