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.
This commit is contained in:
Kristian Høgsberg Kristensen 2016-01-08 22:24:58 -08:00
parent f0993f81c7
commit 7c5e1fd998

View file

@ -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);