diff options
author | Samuel Pitoiset <[email protected]> | 2020-01-28 14:49:16 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-01-29 10:35:15 +0000 |
commit | f53b4defadcf2c5dadbac27c0dd30d6ffcad0dcf (patch) | |
tree | 55ec7cf1c20e983158f8a2adcbdf4070967fee16 /src/amd/vulkan | |
parent | 1b8d99e2885456dcd2d9309f6e1bd7f60d30ed75 (diff) |
radv: remove the non conformant VK implementation warning on GFX10
It's no longer true.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3597>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3597>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 519b7fa06cc..600a740ae29 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -422,8 +422,7 @@ radv_physical_device_init(struct radv_physical_device *device, disk_cache_format_hex_id(buf, device->cache_uuid, VK_UUID_SIZE * 2); device->disk_cache = disk_cache_create(device->name, buf, shader_env_flags); - if (device->rad_info.chip_class < GFX8 || - device->rad_info.chip_class > GFX9) + if (device->rad_info.chip_class < GFX8) fprintf(stderr, "WARNING: radv is not a conformant vulkan implementation, testing use only.\n"); radv_get_driver_uuid(&device->driver_uuid); |