About Social Code
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Justen <jordan.l.justen@intel.com>2023-10-04 13:19:01 -0700
committerMarge Bot <marge-bot@fdo.invalid>2025-07-14 18:53:48 +0000
commitf19e2e69e9ba179b15edc7cfa2f173842a70d103 (patch)
tree3d31b8934c98af7d0719a076793b9f237223c3a8
parent4bf135bc6d894f72a2afcca2752471966b7e52ca (diff)
anv: Set Xe3 as supported
Backport-to: 25.1 Ref: 16a835ed3d4 ("anv: Drop "not yet supported" warning for Xe2") Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Reviewed-by: Sagar Ghuge <sagar.ghuge@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31893>
-rw-r--r--src/intel/vulkan/anv_physical_device.c2
1 files changed, 1 insertions, 1 deletions
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;