OSDN Git Service

radv: do not try to set DCC_CONTROL when image doesn't use DCC
authorSamuel Pitoiset <samuel.pitoiset@gmail.com>
Fri, 28 Sep 2018 12:35:52 +0000 (14:35 +0200)
committerSamuel Pitoiset <samuel.pitoiset@gmail.com>
Mon, 1 Oct 2018 10:13:12 +0000 (12:13 +0200)
Unnecessary. While we are at it, remove the check for pre-VI
because it's already checked earlier.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/amd/vulkan/radv_device.c

index f7752ea..3e0d75b 100644 (file)
@@ -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) {