From 2a07237b6b355d8c4e87a24371d0a2433a4154b4 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Thu, 13 Mar 2025 10:33:36 +0100 Subject: [PATCH] radv: enable RGP on GFX12 This should be working now. 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 6d166ae3caf..5d4d6903df9 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -582,7 +582,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_5) { + if (pdev->info.gfx_level < GFX8 || pdev->info.gfx_level > GFX12) { fprintf(stderr, "GPU hardware not supported: refer to " "the RGP documentation for the list of " "supported GPUs!\n");