anv: Set Xe3 as supported

Backport-to: 25.1
Ref: 16a835ed3d ("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>
(cherry picked from commit f19e2e69e9)
This commit is contained in:
Jordan Justen 2023-10-04 13:19:01 -07:00 committed by Eric Engestrom
parent 0dfe7631a7
commit 19bb041f72
2 changed files with 2 additions and 2 deletions

View file

@ -1384,7 +1384,7 @@
"description": "anv: Set Xe3 as supported",
"nominated": true,
"nomination_type": 4,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null

View file

@ -2514,7 +2514,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;