From 7c5e1fd9984614ff3952bbabf946dac0e2a0c2b6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg=20Kristensen?= Date: Fri, 8 Jan 2016 22:24:58 -0800 Subject: [PATCH] vk: Remove unsupported warnings for Skylake and Broxton These are working as well as Broadwell and Cherryiew. The recent merge from mesa master brings in Kabylake device info and that should be all we need to enable that. --- src/vulkan/anv_device.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index 9c54875a736..0bd040b13f2 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -89,12 +89,9 @@ anv_physical_device_init(struct anv_physical_device *device, fprintf(stderr, "WARNING: Ivy Bridge Vulkan support is incomplete\n"); } else if (device->info->gen == 7 && device->info->is_baytrail) { fprintf(stderr, "WARNING: Bay Trail Vulkan support is incomplete\n"); - } else if (device->info->gen == 9 && !device->info->is_broxton) { - fprintf(stderr, "WARNING: Skylake Vulkan support is incomplete\n"); - } else if (device->info->gen == 9 && device->info->is_broxton) { - fprintf(stderr, "WARNING: Broxton Vulkan support is incomplete\n"); - } else if (device->info->gen == 8) { - /* Broadwell/Cherryview is as fully supported as anything */ + } else if (device->info->gen >= 8) { + /* Broadwell, Cherryview, Skylake, Broxton, Kabylake is as fully + * supported as anything */ } else { result = vk_errorf(VK_ERROR_INCOMPATIBLE_DRIVER, "Vulkan not yet supported on %s", device->name); -- 2.11.0