From bdb2f0dc2af5683ce006df764ac3adf5ef775f78 Mon Sep 17 00:00:00 2001 From: Constantine Shablia Date: Thu, 31 Oct 2024 00:17:19 +0000 Subject: [PATCH] panvk: move samplerAnisotropy in the order it appears in struct definition Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/vulkan/panvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index 45e230a35dc..df436bb09aa 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -254,9 +254,9 @@ get_features(const struct panvk_physical_device *device, .logicOp = true, .wideLines = true, .largePoints = true, + .samplerAnisotropy = true, .textureCompressionETC2 = true, .textureCompressionASTC_LDR = true, - .samplerAnisotropy = true, .shaderUniformBufferArrayDynamicIndexing = true, .shaderSampledImageArrayDynamicIndexing = true, .shaderStorageBufferArrayDynamicIndexing = true,