mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08:04 +02:00
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:
parent
f0993f81c7
commit
7c5e1fd998
1 changed files with 3 additions and 6 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue