From f19e2e69e9ba179b15edc7cfa2f173842a70d103 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Wed, 4 Oct 2023 13:19:01 -0700 Subject: [PATCH] anv: Set Xe3 as supported MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport-to: 25.1 Ref: 16a835ed3d4 ("anv: Drop "not yet supported" warning for Xe2") Signed-off-by: Jordan Justen Reviewed-by: José Roberto de Souza Reviewed-by: Sagar Ghuge Part-of: --- src/intel/vulkan/anv_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_physical_device.c b/src/intel/vulkan/anv_physical_device.c index 502dcae539d..acddc6e1b90 100644 --- a/src/intel/vulkan/anv_physical_device.c +++ b/src/intel/vulkan/anv_physical_device.c @@ -2565,7 +2565,7 @@ anv_physical_device_try_create(struct vk_instance *vk_instance, /* If INTEL_FORCE_PROBE was used, then the user has opted-in for * unsupported device support. No need to print a warning message. */ - } else if (devinfo.ver > 20) { + } else if (devinfo.ver > 30) { result = vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER, "Vulkan not yet supported on %s", devinfo.name); goto fail_fd;