diff options
author | Lionel Landwerlin <[email protected]> | 2017-10-20 18:49:30 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2017-10-21 02:37:33 +0100 |
commit | c71d44c7f845a9ef23251d9a0c95267f4a711578 (patch) | |
tree | c3fcf17977d78b3b3b54168b0fa39b5d4c5e169e | |
parent | 0c95adaf9eb9763016c3319fef6d581b4d6d7359 (diff) |
anv: don't assert on device init on Cannonlake
v2: Warn that support is still in alpha (Jason)
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index a305afebc32..67028e8da9f 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -300,8 +300,10 @@ anv_physical_device_init(struct anv_physical_device *device, } 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 <= 9) { - /* Broadwell, Cherryview, Skylake, Broxton, Kabylake is as fully - * supported as anything */ + /* Broadwell, Cherryview, Skylake, Broxton, Kabylake, Coffelake is as + * fully supported as anything */ + } else if (device->info.gen == 10) { + intel_logw("Cannonlake Vulkan support is alpha"); } else { result = vk_errorf(device->instance, device, VK_ERROR_INCOMPATIBLE_DRIVER, |