From: Samuel Pitoiset Date: Fri, 28 Sep 2018 12:35:52 +0000 (+0200) Subject: radv: do not try to set DCC_CONTROL when image doesn't use DCC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c2867e4c2aae87bd9e0cb11cb67ed63175fce824;p=mesa.git radv: do not try to set DCC_CONTROL when image doesn't use DCC Unnecessary. While we are at it, remove the check for pre-VI because it's already checked earlier. Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index f7752eac83b..3e0d75bb1b6 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -3901,7 +3901,7 @@ radv_init_dcc_control_reg(struct radv_device *device, unsigned max_compressed_block_size; unsigned independent_64b_blocks; - if (device->physical_device->rad_info.chip_class < VI) + if (!radv_image_has_dcc(iview->image)) return 0; if (iview->image->info.samples > 1) {