From fe989df347ccd2a668238214fa9fb36a8dcfd3bf Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Fri, 23 Apr 2021 15:06:27 +0200 Subject: [PATCH] radv: enable DCC stores with the LLVM backend Just to make it consistent compared to ACO. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/amd/vulkan/radv_image.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index ed375f6..3b67f7a 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -283,8 +283,7 @@ radv_image_use_dcc_image_stores(const struct radv_device *device, const struct r */ return device->physical_device->rad_info.chip_class == GFX10 || (device->physical_device->rad_info.chip_class == GFX10_3 && - (device->instance->perftest_flags & RADV_PERFTEST_DCC_STORES) && - !device->physical_device->use_llvm); + (device->instance->perftest_flags & RADV_PERFTEST_DCC_STORES)); } /* -- 2.7.4