radv: Clean up setting the surface flags.
[mesa.git] / src / amd / vulkan / radv_image.c
index a4a622a0d815e931f991320150de479cddd9c178..f2b82dd83695471ba8c92a7ffa69b65fd8bd88c1 100644 (file)
@@ -98,7 +98,7 @@ radv_use_tc_compat_htile_for_image(struct radv_device *device,
        if (pCreateInfo->samples >= 2 &&
            (format == VK_FORMAT_D32_SFLOAT_S8_UINT ||
             (format == VK_FORMAT_D32_SFLOAT &&
-             device->physical_device->rad_info.chip_class == GFX10)))
+             device->physical_device->rad_info.chip_class >= GFX10)))
                return false;
 
        /* GFX9 supports both 32-bit and 16-bit depth surfaces, while GFX8 only
@@ -149,6 +149,27 @@ radv_surface_has_scanout(struct radv_device *device, const struct radv_image_cre
        return info->scanout;
 }
 
+static bool
+radv_image_use_fast_clear_for_image(const struct radv_device *device,
+                                    const struct radv_image *image)
+{
+       if (device->instance->debug_flags & RADV_DEBUG_FORCE_COMPRESS)
+               return true;
+
+       if (image->info.samples <= 1 &&
+           image->info.width * image->info.height <= 512 * 512) {
+               /* Do not enable CMASK or DCC for small surfaces where the cost
+                * of the eliminate pass can be higher than the benefit of fast
+                * clear. RadeonSI does this, but the image threshold is
+                * different.
+                */
+               return false;
+       }
+
+       return image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT &&
+              (image->exclusive || image->queue_family_mask == 1);
+}
+
 static bool
 radv_use_dcc_for_image(struct radv_device *device,
                       const struct radv_image *image,
@@ -179,6 +200,9 @@ radv_use_dcc_for_image(struct radv_device *device,
            vk_format_get_plane_count(format) > 1)
                return false;
 
+       if (!radv_image_use_fast_clear_for_image(device, image))
+               return false;
+
        /* TODO: Enable DCC for mipmaps on GFX9+. */
        if ((pCreateInfo->arrayLayers > 1 || pCreateInfo->mipLevels > 1) &&
            device->physical_device->rad_info.chip_class >= GFX9)
@@ -231,10 +255,21 @@ radv_use_dcc_for_image(struct radv_device *device,
 }
 
 static inline bool
-radv_use_fmask_for_image(const struct radv_image *image)
+radv_use_fmask_for_image(const struct radv_device *device,
+                         const struct radv_image *image)
 {
        return image->info.samples > 1 &&
-              image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
+              ((image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT) ||
+               (device->instance->debug_flags & RADV_DEBUG_FORCE_COMPRESS));
+}
+
+static inline bool
+radv_use_htile_for_image(const struct radv_device *device,
+                         const struct radv_image *image)
+{
+       return image->info.levels == 1 &&
+              ((image->info.width * image->info.height >= 8 * 8) ||
+               (device->instance->debug_flags & RADV_DEBUG_FORCE_COMPRESS));
 }
 
 static bool
@@ -400,14 +435,14 @@ radv_patch_image_from_extra_info(struct radv_device *device,
        return VK_SUCCESS;
 }
 
-static int
-radv_init_surface(struct radv_device *device,
-                 const struct radv_image *image,
-                 struct radeon_surf *surface,
-                 unsigned plane_id,
-                 const VkImageCreateInfo *pCreateInfo,
-                 VkFormat image_format)
+static uint32_t
+radv_get_surface_flags(struct radv_device *device,
+                       const struct radv_image *image,
+                       unsigned plane_id,
+                       const VkImageCreateInfo *pCreateInfo,
+                       VkFormat image_format)
 {
+       uint32_t flags;
        unsigned array_mode = radv_choose_tiling(device, pCreateInfo, image_format);
        VkFormat format = vk_format_get_plane_format(image_format, plane_id);
        const struct vk_format_description *desc = vk_format_description(format);
@@ -416,62 +451,57 @@ radv_init_surface(struct radv_device *device,
        is_depth = vk_format_has_depth(desc);
        is_stencil = vk_format_has_stencil(desc);
 
-       surface->blk_w = vk_format_get_blockwidth(format);
-       surface->blk_h = vk_format_get_blockheight(format);
-
-       surface->bpe = vk_format_get_blocksize(vk_format_depth_only(format));
-       /* align byte per element on dword */
-       if (surface->bpe == 3) {
-               surface->bpe = 4;
-       }
 
-       surface->flags = RADEON_SURF_SET(array_mode, MODE);
+       flags = RADEON_SURF_SET(array_mode, MODE);
 
        switch (pCreateInfo->imageType){
        case VK_IMAGE_TYPE_1D:
                if (pCreateInfo->arrayLayers > 1)
-                       surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_1D_ARRAY, TYPE);
+                       flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_1D_ARRAY, TYPE);
                else
-                       surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_1D, TYPE);
+                       flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_1D, TYPE);
                break;
        case VK_IMAGE_TYPE_2D:
                if (pCreateInfo->arrayLayers > 1)
-                       surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D_ARRAY, TYPE);
+                       flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D_ARRAY, TYPE);
                else
-                       surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D, TYPE);
+                       flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_2D, TYPE);
                break;
        case VK_IMAGE_TYPE_3D:
-               surface->flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_3D, TYPE);
+               flags |= RADEON_SURF_SET(RADEON_SURF_TYPE_3D, TYPE);
                break;
        default:
                unreachable("unhandled image type");
        }
 
        /* Required for clearing/initializing a specific layer on GFX8. */
-       surface->flags |= RADEON_SURF_CONTIGUOUS_DCC_LAYERS;
+       flags |= RADEON_SURF_CONTIGUOUS_DCC_LAYERS;
 
        if (is_depth) {
-               surface->flags |= RADEON_SURF_ZBUFFER;
+               flags |= RADEON_SURF_ZBUFFER;
+               if (!radv_use_htile_for_image(device, image) ||
+                   (device->instance->debug_flags & RADV_DEBUG_NO_HIZ))
+                       flags |= RADEON_SURF_NO_HTILE;
                if (radv_use_tc_compat_htile_for_image(device, pCreateInfo, image_format))
-                       surface->flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;
+                       flags |= RADEON_SURF_TC_COMPATIBLE_HTILE;
        }
 
        if (is_stencil)
-               surface->flags |= RADEON_SURF_SBUFFER;
+               flags |= RADEON_SURF_SBUFFER;
 
        if (device->physical_device->rad_info.chip_class >= GFX9 &&
            pCreateInfo->imageType == VK_IMAGE_TYPE_3D &&
            vk_format_get_blocksizebits(image_format) == 128 &&
            vk_format_is_compressed(image_format))
-               surface->flags |= RADEON_SURF_NO_RENDER_TARGET;
+               flags |= RADEON_SURF_NO_RENDER_TARGET;
 
        if (!radv_use_dcc_for_image(device, image, pCreateInfo, image_format))
-               surface->flags |= RADEON_SURF_DISABLE_DCC;
+               flags |= RADEON_SURF_DISABLE_DCC;
 
-       if (!radv_use_fmask_for_image(image))
-               surface->flags |= RADEON_SURF_NO_FMASK;
+       if (!radv_use_fmask_for_image(device, image))
+               flags |= RADEON_SURF_NO_FMASK;
 
-       return 0;
+       return flags;
 }
 
 static inline unsigned
@@ -593,7 +623,7 @@ si_set_mutable_tex_desc_fields(struct radv_device *device,
                state[6] &= C_008F28_COMPRESSION_EN;
                state[7] = 0;
                if (!disable_compression && radv_dcc_enabled(image, first_level)) {
-                       meta_va = gpu_address + image->dcc_offset;
+                       meta_va = gpu_address + plane->surface.dcc_offset;
                        if (chip_class <= GFX8)
                                meta_va += base_level_info->dcc_offset;
 
@@ -602,7 +632,7 @@ si_set_mutable_tex_desc_fields(struct radv_device *device,
                        meta_va |= dcc_tile_swizzle;
                } else if (!disable_compression &&
                           radv_image_is_tc_compat_htile(image)) {
-                       meta_va = gpu_address + image->htile_offset;
+                       meta_va = gpu_address +  plane->surface.htile_offset;
                }
 
                if (meta_va) {
@@ -630,7 +660,7 @@ si_set_mutable_tex_desc_fields(struct radv_device *device,
                                .pipe_aligned = 1,
                        };
 
-                       if (image->dcc_offset)
+                       if (plane->surface.dcc_offset)
                                meta = plane->surface.u.gfx9.dcc;
 
                        state[6] |= S_00A018_META_PIPE_ALIGNED(meta.pipe_aligned) |
@@ -659,7 +689,7 @@ si_set_mutable_tex_desc_fields(struct radv_device *device,
                                .pipe_aligned = 1,
                        };
 
-                       if (image->dcc_offset)
+                       if (plane->surface.dcc_offset)
                                meta = plane->surface.u.gfx9.dcc;
 
                        state[5] |= S_008F24_META_DATA_ADDRESS(meta_va >> 40) |
@@ -830,7 +860,7 @@ gfx10_make_texture_descriptor(struct radv_device *device,
 
                assert(image->plane_count == 1);
 
-               va = gpu_address + image->offset + image->fmask_offset;
+               va = gpu_address + image->offset + image->planes[0].surface.fmask_offset;
 
                switch (image->info.samples) {
                case 2:
@@ -972,7 +1002,7 @@ si_make_texture_descriptor(struct radv_device *device,
                state[4] |= S_008F20_DEPTH(depth - 1);
                state[5] |= S_008F24_LAST_ARRAY(last_layer);
        }
-       if (image->dcc_offset) {
+       if (image->planes[0].surface.dcc_offset) {
                state[6] = S_008F28_ALPHA_IS_ON_MSB(vi_alpha_is_on_msb(device, vk_format));
        } else {
                /* The last dword is unused by hw. The shader uses it to clear
@@ -994,7 +1024,7 @@ si_make_texture_descriptor(struct radv_device *device,
 
                assert(image->plane_count == 1);
 
-               va = gpu_address + image->offset + image->fmask_offset;
+               va = gpu_address + image->offset + image->planes[0].surface.fmask_offset;
 
                if (device->physical_device->rad_info.chip_class == GFX9) {
                        fmask_format = V_008F14_IMG_DATA_FORMAT_FMASK;
@@ -1054,7 +1084,7 @@ si_make_texture_descriptor(struct radv_device *device,
                                          S_008F24_META_RB_ALIGNED(1);
 
                        if (radv_image_is_tc_compat_cmask(image)) {
-                               va = gpu_address + image->offset + image->cmask_offset;
+                               va = gpu_address + image->offset + image->planes[0].surface.cmask_offset;
 
                                fmask_state[5] |= S_008F24_META_DATA_ADDRESS(va >> 40);
                                fmask_state[6] |= S_008F28_COMPRESSION_EN(1);
@@ -1067,7 +1097,7 @@ si_make_texture_descriptor(struct radv_device *device,
                        fmask_state[5] |= S_008F24_LAST_ARRAY(last_layer);
 
                        if (radv_image_is_tc_compat_cmask(image)) {
-                               va = gpu_address + image->offset + image->cmask_offset;
+                               va = gpu_address + image->offset + image->planes[0].surface.cmask_offset;
 
                                fmask_state[6] |= S_008F28_COMPRESSION_EN(1);
                                fmask_state[7] |= va >> 8;
@@ -1146,7 +1176,7 @@ radv_query_opaque_metadata(struct radv_device *device,
        /* Clear the base address and set the relative DCC offset. */
        desc[0] = 0;
        desc[1] &= C_008F14_BASE_ADDRESS_HI;
-       desc[7] = image->dcc_offset >> 8;
+       desc[7] = image->planes[0].surface.dcc_offset >> 8;
 
        /* Dwords [2:9] contain the image descriptor. */
        memcpy(&md->metadata[2], desc, sizeof(desc));
@@ -1200,61 +1230,40 @@ radv_image_override_offset_stride(struct radv_device *device,
 }
 
 static void
-radv_image_alloc_fmask(struct radv_device *device,
-                      struct radv_image *image)
+radv_image_alloc_single_sample_cmask(const struct radv_device *device,
+                                     const struct radv_image *image,
+                                     struct radeon_surf *surf)
 {
-       unsigned fmask_alignment = image->planes[0].surface.fmask_alignment;
-
-       image->fmask_offset = align64(image->size, fmask_alignment);
-       image->size = image->fmask_offset + image->planes[0].surface.fmask_size;
-       image->alignment = MAX2(image->alignment, fmask_alignment);
-}
-
-static void
-radv_image_alloc_cmask(struct radv_device *device,
-                      struct radv_image *image)
-{
-       unsigned cmask_alignment = image->planes[0].surface.cmask_alignment;
-       unsigned cmask_size = image->planes[0].surface.cmask_size;
-       uint32_t clear_value_size = 0;
-
-       if (!cmask_size)
+       if (!surf->cmask_size || surf->cmask_offset || surf->bpe > 8 ||
+           image->info.levels > 1 || image->info.depth > 1 ||
+           radv_image_has_dcc(image) ||
+           !radv_image_use_fast_clear_for_image(device, image))
                return;
 
-       assert(cmask_alignment);
+       assert(image->info.storage_samples == 1);
 
-       image->cmask_offset = align64(image->size, cmask_alignment);
-       /* + 8 for storing the clear values */
-       if (!image->clear_value_offset) {
-               image->clear_value_offset = image->cmask_offset + cmask_size;
-               clear_value_size = 8;
-       }
-       image->size = image->cmask_offset + cmask_size + clear_value_size;
-       image->alignment = MAX2(image->alignment, cmask_alignment);
+       surf->cmask_offset = align64(surf->total_size, surf->cmask_alignment);
+       surf->total_size = surf->cmask_offset + surf->cmask_size;
+       surf->alignment = MAX2(surf->alignment, surf->cmask_alignment);
 }
 
 static void
-radv_image_alloc_dcc(struct radv_image *image)
+radv_image_alloc_values(const struct radv_device *device, struct radv_image *image)
 {
-       assert(image->plane_count == 1);
+       if (radv_image_has_dcc(image)) {
+               image->fce_pred_offset = image->size;
+               image->size += 8 * image->info.levels;
 
-       image->dcc_offset = align64(image->size, image->planes[0].surface.dcc_alignment);
-       /* + 24 for storing the clear values + fce pred + dcc pred for each mip */
-       image->clear_value_offset = image->dcc_offset + image->planes[0].surface.dcc_size;
-       image->fce_pred_offset = image->clear_value_offset + 8 * image->info.levels;
-       image->dcc_pred_offset = image->clear_value_offset + 16 * image->info.levels;
-       image->size = image->dcc_offset + image->planes[0].surface.dcc_size + 24 * image->info.levels;
-       image->alignment = MAX2(image->alignment, image->planes[0].surface.dcc_alignment);
-}
+               image->dcc_pred_offset = image->size;
+               image->size += 8 * image->info.levels;
+       }
 
-static void
-radv_image_alloc_htile(struct radv_device *device, struct radv_image *image)
-{
-       image->htile_offset = align64(image->size, image->planes[0].surface.htile_alignment);
+       if (radv_image_has_dcc(image) || radv_image_has_cmask(image) ||
+           radv_image_has_htile(image)) {
+               image->clear_value_offset = image->size;
+               image->size += 8 * image->info.levels;
+       }
 
-       /* + 8 for storing the clear values */
-       image->clear_value_offset = image->htile_offset + image->planes[0].surface.htile_size;
-       image->size = image->clear_value_offset + image->info.levels * 8;
        if (radv_image_is_tc_compat_htile(image) &&
            device->physical_device->rad_info.has_tc_compat_zrange_bug) {
                /* Metadata for the TC-compatible HTILE hardware bug which
@@ -1262,72 +1271,37 @@ radv_image_alloc_htile(struct radv_device *device, struct radv_image *image)
                 * fast depth clears to 0.0f.
                 */
                image->tc_compat_zrange_offset = image->size;
-               image->size = image->tc_compat_zrange_offset + image->info.levels * 4;
+               image->size += image->info.levels * 4;
        }
-       image->alignment = align64(image->alignment, image->planes[0].surface.htile_alignment);
 }
 
-static inline bool
-radv_image_can_enable_dcc_or_cmask(struct radv_image *image)
-{
-       if (image->info.samples <= 1 &&
-           image->info.width * image->info.height <= 512 * 512) {
-               /* Do not enable CMASK or DCC for small surfaces where the cost
-                * of the eliminate pass can be higher than the benefit of fast
-                * clear. RadeonSI does this, but the image threshold is
-                * different.
-                */
-               return false;
-       }
-
-       return image->usage & VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT &&
-              (image->exclusive || image->queue_family_mask == 1);
-}
 
-static inline bool
-radv_image_can_enable_dcc(struct radv_device *device, struct radv_image *image)
+static void
+radv_image_reset_layout(struct radv_image *image)
 {
-       if (!radv_image_can_enable_dcc_or_cmask(image) ||
-           !radv_image_has_dcc(image))
-               return false;
-
-       return true;
-}
+       image->size = 0;
+       image->alignment = 1;
 
-static inline bool
-radv_image_can_enable_cmask(struct radv_image *image)
-{
-       if (image->planes[0].surface.bpe > 8 && image->info.samples == 1) {
-               /* Do not enable CMASK for non-MSAA images (fast color clear)
-                * because 128 bit formats are not supported, but FMASK might
-                * still be used.
-                */
-               return false;
-       }
+       image->tc_compatible_cmask = image->tc_compatible_htile = 0;
+       image->fce_pred_offset = image->dcc_pred_offset = 0;
+       image->clear_value_offset = image->tc_compat_zrange_offset = 0;
 
-       return radv_image_can_enable_dcc_or_cmask(image) &&
-              image->info.levels == 1 &&
-              image->info.depth == 1;
-}
+       for (unsigned i = 0; i < image->plane_count; ++i) {
+               VkFormat format = vk_format_get_plane_format(image->vk_format, i);
 
-static inline bool
-radv_image_can_enable_htile(struct radv_image *image)
-{
-       return radv_image_has_htile(image) &&
-              image->info.levels == 1 &&
-              image->info.width * image->info.height >= 8 * 8;
-}
+               uint32_t flags = image->planes[i].surface.flags;
+               memset(image->planes + i, 0, sizeof(image->planes[i]));
 
-static void radv_image_disable_dcc(struct radv_image *image)
-{
-       for (unsigned i = 0; i < image->plane_count; ++i)
-               image->planes[i].surface.dcc_size = 0;
-}
+               image->planes[i].surface.flags = flags;
+               image->planes[i].surface.blk_w = vk_format_get_blockwidth(format);
+               image->planes[i].surface.blk_h = vk_format_get_blockheight(format);
+               image->planes[i].surface.bpe = vk_format_get_blocksize(vk_format_depth_only(format));
 
-static void radv_image_disable_htile(struct radv_image *image)
-{
-       for (unsigned i = 0; i < image->plane_count; ++i)
-               image->planes[i].surface.htile_size = 0;
+               /* align byte per element on dword */
+               if (image->planes[i].surface.bpe == 3) {
+                       image->planes[i].surface.bpe = 4;
+               }
+       }
 }
 
 VkResult
@@ -1335,9 +1309,6 @@ radv_image_create_layout(struct radv_device *device,
                          struct radv_image_create_info create_info,
                          struct radv_image *image)
 {
-       /* Check that we did not initialize things earlier */
-       assert(!image->planes[0].surface.surf_size);
-
        /* Clear the pCreateInfo pointer so we catch issues in the delayed case when we test in the
         * common internal case. */
        create_info.vk_info = NULL;
@@ -1347,8 +1318,8 @@ radv_image_create_layout(struct radv_device *device,
        if (result != VK_SUCCESS)
                return result;
 
-       image->size = 0;
-       image->alignment = 1;
+       radv_image_reset_layout(image);
+
        for (unsigned plane = 0; plane < image->plane_count; ++plane) {
                struct ac_surf_info info = image_info;
 
@@ -1369,52 +1340,45 @@ radv_image_create_layout(struct radv_device *device,
 
                device->ws->surface_init(device->ws, &info, &image->planes[plane].surface);
 
-               image->planes[plane].offset = align(image->size, image->planes[plane].surface.surf_alignment);
-               image->size = image->planes[plane].offset + image->planes[plane].surface.surf_size;
-               image->alignment = image->planes[plane].surface.surf_alignment;
+               if (!create_info.no_metadata_planes && image->plane_count == 1)
+                       radv_image_alloc_single_sample_cmask(device, image, &image->planes[plane].surface);
+
+               image->planes[plane].offset = align(image->size, image->planes[plane].surface.alignment);
+               image->size = image->planes[plane].offset + image->planes[plane].surface.total_size;
+               image->alignment = MAX2(image->alignment, image->planes[plane].surface.alignment);
 
                image->planes[plane].format = vk_format_get_plane_format(image->vk_format, plane);
        }
 
-       /* Try to enable DCC first. */
-       if (radv_image_can_enable_dcc(device, image)) {
-               radv_image_alloc_dcc(image);
-               if (image->info.samples > 1) {
-                       /* CMASK should be enabled because DCC fast
-                        * clear with MSAA needs it.
-                        */
-                       assert(radv_image_can_enable_cmask(image));
-                       radv_image_alloc_cmask(device, image);
-               }
-       } else {
-               /* When DCC cannot be enabled, try CMASK. */
-               radv_image_disable_dcc(image);
-               if (radv_image_can_enable_cmask(image)) {
-                       radv_image_alloc_cmask(device, image);
-               }
-       }
+       image->tc_compatible_cmask = radv_image_has_cmask(image) &&
+                                    radv_use_tc_compat_cmask_for_image(device, image);
 
-       /* Try to enable FMASK for multisampled images. */
-       if (image->planes[0].surface.fmask_size) {
-               radv_image_alloc_fmask(device, image);
+       image->tc_compatible_htile = radv_image_has_htile(image) &&
+                                    image->planes[0].surface.flags & RADEON_SURF_TC_COMPATIBLE_HTILE;
 
-               if (radv_use_tc_compat_cmask_for_image(device, image))
-                       image->tc_compatible_cmask = true;
-       } else {
-               /* Otherwise, try to enable HTILE for depth surfaces. */
-               if (radv_image_can_enable_htile(image) &&
-                   !(device->instance->debug_flags & RADV_DEBUG_NO_HIZ)) {
-                       image->tc_compatible_htile = image->planes[0].surface.flags & RADEON_SURF_TC_COMPATIBLE_HTILE;
-                       radv_image_alloc_htile(device, image);
-               } else {
-                       radv_image_disable_htile(image);
-               }
-       }
+       radv_image_alloc_values(device, image);
 
        assert(image->planes[0].surface.surf_size);
        return VK_SUCCESS;
 }
 
+static void
+radv_destroy_image(struct radv_device *device,
+                  const VkAllocationCallbacks *pAllocator,
+                  struct radv_image *image)
+{
+       if ((image->flags & VK_IMAGE_CREATE_SPARSE_BINDING_BIT) && image->bo)
+               device->ws->buffer_destroy(image->bo);
+
+       if (image->owned_memory != VK_NULL_HANDLE) {
+               RADV_FROM_HANDLE(radv_device_memory, mem, image->owned_memory);
+               radv_free_memory(device, pAllocator, mem);
+       }
+
+       vk_object_base_finish(&image->base);
+       vk_free2(&device->vk.alloc, pAllocator, image);
+}
+
 VkResult
 radv_image_create(VkDevice _device,
                  const struct radv_image_create_info *create_info,
@@ -1481,7 +1445,8 @@ radv_image_create(VkDevice _device,
        }
 
        for (unsigned plane = 0; plane < image->plane_count; ++plane) {
-               radv_init_surface(device, image, &image->planes[plane].surface, plane, pCreateInfo, format);
+               image->planes[plane].surface.flags =
+                       radv_get_surface_flags(device, image, plane, pCreateInfo, format);
        }
 
        bool delay_layout = external_info &&
@@ -1504,7 +1469,7 @@ radv_image_create(VkDevice _device,
                image->bo = device->ws->buffer_create(device->ws, image->size, image->alignment,
                                                      0, RADEON_FLAG_VIRTUAL, RADV_BO_PRIORITY_VIRTUAL);
                if (!image->bo) {
-                       vk_free2(&device->vk.alloc, alloc, image);
+                       radv_destroy_image(device, alloc, image);
                        return vk_error(device->instance, VK_ERROR_OUT_OF_DEVICE_MEMORY);
                }
        }
@@ -1766,7 +1731,8 @@ bool radv_layout_can_fast_clear(const struct radv_image *image,
                                bool in_render_loop,
                                unsigned queue_mask)
 {
-       return layout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
+       return layout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL &&
+              queue_mask == (1u << RADV_QUEUE_GENERAL);
 }
 
 bool radv_layout_dcc_compressed(const struct radv_device *device,
@@ -1834,14 +1800,7 @@ radv_DestroyImage(VkDevice _device, VkImage _image,
        if (!image)
                return;
 
-       if (image->flags & VK_IMAGE_CREATE_SPARSE_BINDING_BIT)
-               device->ws->buffer_destroy(image->bo);
-
-       if (image->owned_memory != VK_NULL_HANDLE)
-               radv_FreeMemory(_device, image->owned_memory, pAllocator);
-
-       vk_object_base_finish(&image->base);
-       vk_free2(&device->vk.alloc, pAllocator, image);
+       radv_destroy_image(device, pAllocator, image);
 }
 
 void radv_GetImageSubresourceLayout(