From bbdb615a868f3bc9fc04f7c2f603ee49f2b31031 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Pi=C3=B1eiro?= Date: Tue, 4 Jul 2023 01:05:28 +0200 Subject: [PATCH] v3dv/device: 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 branch we were reporting up to now is no longer valid. Fixes dEQP-VK.api.driver_properties.conformance_version Reviewed-by: Iago Toral Quiroga Part-of: --- src/broadcom/vulkan/v3dv_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c index 3bad290e8c5..abe5de4b4f2 100644 --- a/src/broadcom/vulkan/v3dv_device.c +++ b/src/broadcom/vulkan/v3dv_device.c @@ -1576,8 +1576,8 @@ v3dv_GetPhysicalDeviceProperties2(VkPhysicalDevice physicalDevice, .driverID = VK_DRIVER_ID_MESA_V3DV, .conformanceVersion = { .major = 1, - .minor = 2, - .subminor = 7, + .minor = 3, + .subminor = 6, .patch = 1, }, .supportedDepthResolveModes = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT,