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>
This commit is contained in:
Jason Ekstrand 2019-05-02 22:00:02 -05:00
parent d0ea9877b8
commit 30fa15e36b
2 changed files with 2 additions and 11 deletions

View file

@ -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,

View file

@ -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);