mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-05 02:30:18 +01:00
anv: Print warning that Xe2 is not supported rather than failing
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25411>
This commit is contained in:
parent
30ba269070
commit
b5eb96384c
1 changed files with 3 additions and 1 deletions
|
|
@ -1259,7 +1259,9 @@ anv_physical_device_try_create(struct vk_instance *vk_instance,
|
|||
goto fail_fd;
|
||||
}
|
||||
|
||||
if (devinfo.ver > 12) {
|
||||
if (devinfo.ver == 20) {
|
||||
mesa_logw("Vulkan not yet supported on %s", devinfo.name);
|
||||
} else if (devinfo.ver > 12) {
|
||||
result = vk_errorf(instance, VK_ERROR_INCOMPATIBLE_DRIVER,
|
||||
"Vulkan not yet supported on %s", devinfo.name);
|
||||
goto fail_fd;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue