diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c index 9a885afeb11..9d00efe0841 100644 --- a/src/amd/vulkan/radv_image.c +++ b/src/amd/vulkan/radv_image.c @@ -1278,7 +1278,7 @@ radv_image_alloc_values(const struct radv_device *device, struct radv_image *ima if (image->tiling == VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT) return; - if (radv_image_has_cmask(image) || radv_image_has_dcc(image)) { + if (radv_image_has_cmask(image) || (radv_image_has_dcc(image) && !image->support_comp_to_single)) { image->fce_pred_offset = image->size; image->size += 8 * image->info.levels; }