From 297fdc66366a7478878a3c640298fa93341a44c9 Mon Sep 17 00:00:00 2001 From: Georg Lehmann Date: Wed, 4 Jun 2025 14:14:52 +0200 Subject: [PATCH] radv: don't accidentally expose samplerFilterMinmax through Vulkan 1.2 Cc: mesa-stable 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 66c5c8582cd..dc23aa623bb 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -864,7 +864,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc .descriptorBindingVariableDescriptorCount = true, .runtimeDescriptorArray = true, - .samplerFilterMinmax = true, + .samplerFilterMinmax = radv_filter_minmax_enabled(pdev), .scalarBlockLayout = true, .imagelessFramebuffer = true, .uniformBufferStandardLayout = true,