diff options
author | Rafael Antognolli <[email protected]> | 2018-02-13 13:18:08 -0800 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2018-02-14 10:11:01 -0800 |
commit | fcae3d1a9acc080bf31cf7b5c4d0b18e67319b09 (patch) | |
tree | 81c23a67c8ee1efbf41d7a2113e09d76acecb693 /src/intel | |
parent | bf1577fe0972ae910c071743dc89d261a46c2926 (diff) |
anv/gen10: Remove warning message.
Gen10 seems pretty stable so far, remove "alpha support" message.
Signed-off-by: Rafael Antognolli <[email protected]>
Cc: Jason Ekstrand <[email protected]>
Cc: "18.0" [email protected]
Reviewed-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 86c1bdc1d51..2c2cd0b2d42 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -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, |