diff options
author | Jason Ekstrand <jason@jlekstrand.net> | 2019-05-02 22:00:02 -0500 |
---|---|---|
committer | Jason Ekstrand <jason@jlekstrand.net> | 2019-05-03 22:57:35 +0000 |
commit | 30fa15e36b031f466106e45d39a6c5295a0530e7 (patch) | |
tree | 9d6f2d24ac32cbb5da83945a34af6332e6fd92ff | |
parent | d0ea9877b830ab2fe8948e70846efb5fff78cf0c (diff) |
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 <kenneth@whitecape.org>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 6 | ||||
-rw-r--r-- | 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 507b81e0d3a7..d74116bd9c9e 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 df12f373f22c..f6cf82d66947 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); |