diff --git a/.pick_status.json b/.pick_status.json index d87d10210f2..998541abb8a 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -634,7 +634,7 @@ "description": "radv: Correctly select SDMA support for PRIME blit.", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 10edc11129c..efb1fa53eda 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -530,7 +530,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; }