From 8d03cfae7c30b06da2353956dc59b97e5b82bf11 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Tue, 27 Oct 2020 02:24:36 -0700 Subject: [PATCH] anv: Drop warning about gen12 not being supported Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand Part-of: --- src/intel/vulkan/anv_device.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 893713ea094..85f80d24a9d 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -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);