From 30fa15e36b031f466106e45d39a6c5295a0530e7 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Thu, 2 May 2019 22:00:02 -0500 Subject: [PATCH] anv,i965: Stop warning about incomplete gen11 support Both drivers are feature-complete and should be running more-or-less at perf at this point. Drop the warning. Acked-by: Kenneth Graunke Reviewed-by: Anuj Phogat --- src/intel/vulkan/anv_device.c | 6 ++---- src/mesa/drivers/dri/i965/brw_context.c | 7 ------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 507b81e0d3a..d74116bd9c9 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -421,10 +421,8 @@ anv_physical_device_init(struct anv_physical_device *device, intel_logw("Ivy Bridge Vulkan support is incomplete"); } else if (device->info.gen == 7 && device->info.is_baytrail) { intel_logw("Bay Trail Vulkan support is incomplete"); - } else if (device->info.gen >= 8 && device->info.gen <= 10) { - /* Gen8-10 fully supported */ - } else if (device->info.gen == 11) { - intel_logw("Vulkan is not yet fully supported on gen11."); + } else if (device->info.gen >= 8 && device->info.gen <= 11) { + /* Gen8-11 fully supported */ } else { result = vk_errorf(device->instance, device, VK_ERROR_INCOMPATIBLE_DRIVER, diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index df12f373f22..f6cf82d6694 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -1080,13 +1080,6 @@ brwCreateContext(gl_api api, return false; } - if (devinfo->gen == 11) { - fprintf(stderr, - "WARNING: i965 does not fully support Gen11 yet.\n" - "Instability or lower performance might occur.\n"); - - } - brw_upload_init(&brw->upload, brw->bufmgr, 65536); brw_init_state(brw); -- 2.30.2