Module: Mesa
Branch: main
Commit: 436b89e8388810dc456c366b8ab0ee03f8fb1357
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=436b89e8388810dc456c366b8ab0ee03f8fb1357

Author: Timur Kristóf <timur.kris...@gmail.com>
Date:   Thu Jan  4 10:10:11 2024 +0100

radv: Correctly select SDMA support for PRIME blit.

Cc: mesa-stable
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10317
Reviewed-by: Samuel Pitoiset <samuel.pitoi...@gmail.com>
Signed-off-by: Timur Kristóf <timur.kris...@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27015>

---

 src/amd/vulkan/radv_image.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
index 42f343491ae..ea1eb749ce4 100644
--- a/src/amd/vulkan/radv_image.c
+++ b/src/amd/vulkan/radv_image.c
@@ -554,7 +554,7 @@ radv_patch_image_from_extra_info(struct radv_device 
*device, struct radv_image *
          image_info->surf_index = NULL;
       }
 
-      if (create_info->prime_blit_src && 
device->physical_device->rad_info.gfx_level == GFX9) {
+      if (create_info->prime_blit_src && 
!device->physical_device->rad_info.sdma_supports_compression) {
          /* Older SDMA hw can't handle DCC */
          image->planes[plane].surface.flags |= RADEON_SURF_DISABLE_DCC;
       }

Reply via email to