diff options
author | Jason Ekstrand <[email protected]> | 2017-06-08 17:10:05 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-06-09 16:03:00 -0700 |
commit | f2cbf738b4d4d51127c7a43952ed2660a9670f40 (patch) | |
tree | 504e628d7c18517840bcf4c07485d4d515bcd469 | |
parent | 9acc93feeb3b07dcd1bee161cd39e18e9704e7db (diff) |
anv: Don't advertise support on anything above gen9
This will prevent the driver from even trying to work on Cannon Lake
until we get actual support added.
Reviewed-by: Anuj Phogat <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 72a96b7eac7..8e8c50200b1 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -293,7 +293,7 @@ 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 >= 8) { + } else if (device->info.gen >= 8 && device->info.gen <= 9) { /* Broadwell, Cherryview, Skylake, Broxton, Kabylake is as fully * supported as anything */ } else { |