From 7988e966fc20f9ad438c7c53e6ace3e39bd45d1c Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Fri, 24 Jun 2022 03:51:01 -0700 Subject: [PATCH] dzn: Advertise anisotropic filtering support We support it already, let's toggle the switch to expose it. Reviewed-by: Jesse Natalie Part-of: --- src/microsoft/vulkan/dzn_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microsoft/vulkan/dzn_device.c b/src/microsoft/vulkan/dzn_device.c index 7ff422982e8..e791d5437cf 100644 --- a/src/microsoft/vulkan/dzn_device.c +++ b/src/microsoft/vulkan/dzn_device.c @@ -1076,7 +1076,7 @@ dzn_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice, .largePoints = false, .alphaToOne = false, .multiViewport = false, - .samplerAnisotropy = false, + .samplerAnisotropy = true, .textureCompressionETC2 = false, .textureCompressionASTC_LDR = false, .textureCompressionBC = dzn_physical_device_supports_bc(pdev),