From: Kristian Høgsberg Kristensen Date: Sat, 9 Jan 2016 06:24:58 +0000 (-0800) Subject: vk: Remove unsupported warnings for Skylake and Broxton X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7c5e1fd9984614ff3952bbabf946dac0e2a0c2b6;p=mesa.git 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. --- 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);