From 12d86e9822f97d4a66d8cbb90ba13491153711ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Briano?= Date: Wed, 21 Jun 2023 16:16:37 -0700 Subject: [PATCH] anv: update conformanceVersion The Vulkan CTS started generating the list of valid versions the driver can report as conformant against based on the active branches, and the 1.3.0 branch we were reporting up to now is no longer valid. Fixes dEQP-VK.api.driver_properties.conformance_version Reviewed-by: Mark Janes Part-of: --- src/intel/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index fa66c8b526b..8f52a4b07f4 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1849,7 +1849,7 @@ anv_get_physical_device_properties_1_2(struct anv_physical_device *pdevice, p->conformanceVersion = (VkConformanceVersion) { .major = 1, .minor = 3, - .subminor = 0, + .subminor = 6, .patch = 0, };