anv: Drop warning about gen12 not being supported

Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7333>
This commit is contained in:
Jordan Justen 2020-10-27 02:24:36 -07:00
parent a1885332d7
commit 8d03cfae7c
1 changed files with 2 additions and 4 deletions

View File

@ -332,10 +332,8 @@ anv_physical_device_try_create(struct anv_instance *instance,
mesa_logw("Ivy Bridge Vulkan support is incomplete");
} else if (devinfo.gen == 7 && devinfo.is_baytrail) {
mesa_logw("Bay Trail Vulkan support is incomplete");
} else if (devinfo.gen >= 8 && devinfo.gen <= 11) {
/* Gen8-11 fully supported */
} else if (devinfo.gen == 12) {
mesa_logw("Vulkan is not yet fully supported on gen12");
} else if (devinfo.gen >= 8 && devinfo.gen <= 12) {
/* Gen8-12 fully supported */
} else {
result = vk_errorfi(instance, NULL, VK_ERROR_INCOMPATIBLE_DRIVER,
"Vulkan not yet supported on %s", device_name);