anv/icl: Enable Vulkan on Ice Lake
authorAnuj Phogat <anuj.phogat@gmail.com>
Mon, 16 Apr 2018 22:48:41 +0000 (15:48 -0700)
committerAnuj Phogat <anuj.phogat@gmail.com>
Thu, 26 Apr 2018 23:31:27 +0000 (16:31 -0700)
This patch enables the Vulkan driver on Ice Lake h/w
with added warning about preliminary support.

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
src/intel/vulkan/anv_device.c

index 7522b7865c25b4081a4b4369ae358b505d88df05..b456d3d4c5224d18ebd6a31d5c2c5200946e8dcb 100644 (file)
@@ -323,6 +323,8 @@ anv_physical_device_init(struct anv_physical_device *device,
       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 {
       result = vk_errorf(device->instance, device,
                          VK_ERROR_INCOMPATIBLE_DRIVER,