From: Samuel Pitoiset Date: Tue, 28 Jan 2020 13:49:16 +0000 (+0100) Subject: radv: remove the non conformant VK implementation warning on GFX10 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f53b4defadcf2c5dadbac27c0dd30d6ffcad0dcf;p=mesa.git radv: remove the non conformant VK implementation warning on GFX10 It's no longer true. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Tested-by: Marge Bot Part-of: --- 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);