mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 11:00:11 +01:00
anv/gen10: Remove warning message.
Gen10 seems pretty stable so far, remove "alpha support" message. Signed-off-by: Rafael Antognolli <rafael.antognolli@intel.com> Cc: Jason Ekstrand <jason@jlekstrand.net> Cc: "18.0" mesa-stable@lists.freedesktop.org Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
bf1577fe09
commit
fcae3d1a9a
1 changed files with 2 additions and 5 deletions
|
|
@ -312,11 +312,8 @@ anv_physical_device_init(struct anv_physical_device *device,
|
|||
intel_logw("Ivy Bridge Vulkan support is incomplete");
|
||||
} 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, Coffelake is as
|
||||
* fully supported as anything */
|
||||
} else if (device->info.gen == 10) {
|
||||
intel_logw("Cannonlake Vulkan support is alpha");
|
||||
} else if (device->info.gen >= 8 && device->info.gen <= 10) {
|
||||
/* Gen8-10 fully supported */
|
||||
} else {
|
||||
result = vk_errorf(device->instance, device,
|
||||
VK_ERROR_INCOMPATIBLE_DRIVER,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue