summaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_image.c
diff options
context:
space:
mode:
authorBas Nieuwenhuizen <[email protected]>2019-08-05 01:39:23 +0200
committerBas Nieuwenhuizen <[email protected]>2019-08-07 02:13:07 +0200
commit4bb17c08ae5d734894de0fcefe6a9645b443bf34 (patch)
treeeace710932e21c4a931bdbde73e1a6eeeb6dbd18 /src/amd/vulkan/radv_image.c
parent3a5950f50174390e817c619f972b8b8ea21c6705 (diff)
radv/gfx10: Enable DCC for storage images.
v2: Hide it behind a perftest flag. Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_image.c')
-rw-r--r--src/amd/vulkan/radv_image.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/amd/vulkan/radv_image.c b/src/amd/vulkan/radv_image.c
index 64b2a73bf45..b3a83ff306d 100644
--- a/src/amd/vulkan/radv_image.c
+++ b/src/amd/vulkan/radv_image.c
@@ -143,6 +143,13 @@ radv_surface_has_scanout(struct radv_device *device, const struct radv_image_cre
}
static bool
+radv_support_storage_dcc(const struct radv_physical_device *pdevice)
+{
+ return pdevice->rad_info.chip_class >= GFX10 &&
+ (pdevice->instance->perftest_flags & RADV_PERFTEST_STORAGE_DCC);
+}
+
+static bool
radv_use_dcc_for_image(struct radv_device *device,
const struct radv_image *image,
const struct radv_image_create_info *create_info,
@@ -161,8 +168,8 @@ radv_use_dcc_for_image(struct radv_device *device,
if (image->shareable)
return false;
- /* TODO: Enable DCC for storage images. */
- if ((pCreateInfo->usage & VK_IMAGE_USAGE_STORAGE_BIT) ||
+ if (((pCreateInfo->usage & VK_IMAGE_USAGE_STORAGE_BIT) &&
+ !radv_support_storage_dcc(device->physical_device))||
(pCreateInfo->flags & VK_IMAGE_CREATE_EXTENDED_USAGE_BIT))
return false;
@@ -1444,13 +1451,17 @@ radv_image_view_make_descriptor(struct radv_image_view *iview,
else
base_level_info = &plane->surface.u.legacy.level[iview->base_mip];
}
+
+ if (is_storage_image && radv_image_has_dcc(iview->image) &&
+ !radv_support_storage_dcc(device->physical_device))
+ disable_compression = true;
si_set_mutable_tex_desc_fields(device, image,
base_level_info,
plane_id,
iview->base_mip,
iview->base_mip,
blk_w, is_stencil, is_storage_image,
- is_storage_image || disable_compression,
+ disable_compression,
descriptor->plane_descriptors[descriptor_plane_id]);
}
@@ -1650,7 +1661,8 @@ bool radv_layout_dcc_compressed(const struct radv_device *device,
{
/* Don't compress compute transfer dst, as image stores are not supported. */
if (layout == VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL &&
- (queue_mask & (1u << RADV_QUEUE_COMPUTE)))
+ (queue_mask & (1u << RADV_QUEUE_COMPUTE)) &&
+ !radv_support_storage_dcc(device->physical_device))
return false;
return radv_image_has_dcc(image) &&!in_render_loop;