From 619bcd3b5c8fefec773c4281dcc808b20b95306b Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 17 Jul 2024 06:06:15 -0700 Subject: [PATCH] radv: allow to capture with RGP on GFX11_5 It works fine. Signed-off-by: Samuel Pitoiset Part-of: --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 108846ac8aa..b5db5d64d59 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -587,7 +587,7 @@ radv_device_init_rgp(struct radv_device *device) if (!(instance->vk.trace_mode & RADV_TRACE_MODE_RGP)) return VK_SUCCESS; - if (pdev->info.gfx_level < GFX8 || pdev->info.gfx_level > GFX11) { + if (pdev->info.gfx_level < GFX8 || pdev->info.gfx_level > GFX11_5) { fprintf(stderr, "GPU hardware not supported: refer to " "the RGP documentation for the list of " "supported GPUs!\n");