summaryrefslogtreecommitdiff
path: root/src/amd
diff options
context:
space:
mode:
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>2020-01-28 14:49:16 +0100
committerMarge Bot <eric+marge@anholt.net>2020-01-29 10:35:15 +0000
commitf53b4defadcf2c5dadbac27c0dd30d6ffcad0dcf (patch)
tree55ec7cf1c20e983158f8a2adcbdf4070967fee16 /src/amd
parent1b8d99e2885456dcd2d9309f6e1bd7f60d30ed75 (diff)
radv: remove the non conformant VK implementation warning on GFX10
It's no longer true. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> 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')
-rw-r--r--src/amd/vulkan/radv_device.c3
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);