anv,i965: Stop warning about incomplete gen11 support
authorJason Ekstrand <jason@jlekstrand.net>
Fri, 3 May 2019 03:00:02 +0000 (22:00 -0500)
committerJason Ekstrand <jason@jlekstrand.net>
Fri, 3 May 2019 22:57:35 +0000 (22:57 +0000)
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>
src/intel/vulkan/anv_device.c
src/mesa/drivers/dri/i965/brw_context.c

index 507b81e..d74116b 100644 (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,
index df12f37..f6cf82d 100644 (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);