[Mesa-dev] [PATCH v2 6/9] radv: decompress HTILE if the resolve src image is compressed
Bas Nieuwenhuizen
bas at basnieuwenhuizen.nl
Fri Jun 21 13:23:13 UTC 2019
We only need this if the HTILE is not tc-compat?
Otherwise the read side is independent of compute/fragment shader.
On Wed, Jun 12, 2019 at 11:44 AM Samuel Pitoiset
<samuel.pitoiset at gmail.com> wrote:
>
> It's required to decompress HTILE before resolving with the
> compute path.
>
> v2: - do proper layout transitions
> - account for the framebuffer layers
>
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
> src/amd/vulkan/radv_meta_resolve.c | 18 +++++++++++++++++-
> 1 file changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/src/amd/vulkan/radv_meta_resolve.c b/src/amd/vulkan/radv_meta_resolve.c
> index 7cadf937ee6..48ebbd1fc10 100644
> --- a/src/amd/vulkan/radv_meta_resolve.c
> +++ b/src/amd/vulkan/radv_meta_resolve.c
> @@ -784,6 +784,22 @@ radv_decompress_resolve_subpass_src(struct radv_cmd_buffer *cmd_buffer)
> radv_decompress_resolve_src(cmd_buffer, src_image,
> src_att.layout, 1, ®ion);
> }
> +
> + if (subpass->ds_resolve_attachment) {
> + struct radv_subpass_attachment src_att = *subpass->depth_stencil_attachment;
> + struct radv_image_view *src_iview =
> + fb->attachments[src_att.attachment].attachment;
> + struct radv_image *src_image = src_iview->image;
> +
> + VkImageResolve region = {};
> + region.srcSubresource.aspectMask = VK_IMAGE_ASPECT_DEPTH_BIT;
> + region.srcSubresource.mipLevel = 0;
> + region.srcSubresource.baseArrayLayer = src_iview->base_layer;
> + region.srcSubresource.layerCount = layer_count;
> +
> + radv_decompress_resolve_src(cmd_buffer, src_image,
> + src_att.layout, 1, ®ion);
> + }
> }
>
> /**
> @@ -809,7 +825,7 @@ radv_decompress_resolve_src(struct radv_cmd_buffer *cmd_buffer,
> barrier.newLayout = VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL;
> barrier.image = radv_image_to_handle(src_image);
> barrier.subresourceRange = (VkImageSubresourceRange) {
> - .aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
> + .aspectMask = region->srcSubresource.aspectMask,
> .baseMipLevel = region->srcSubresource.mipLevel,
> .levelCount = 1,
> .baseArrayLayer = src_base_layer,
> --
> 2.22.0
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list