radv/meta: fix HTILE fixup after copying depth/stencil image copies

Typo, it should be false because it's after the copy.

Fixes: 4f41818194 ("radv/meta: add a function to fixup HTILE metadata for copies on compute queue")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40270>
This commit is contained in:
Samuel Pitoiset 2026-03-06 18:03:24 +01:00 committed by Marge Bot
parent fff16a9748
commit 4428541c54

View file

@ -688,7 +688,7 @@ gfx_or_compute_copy_image(struct radv_cmd_buffer *cmd_buffer, struct radv_image
if (use_compute) {
radv_fixup_copy_dst_htile_metadata(cmd_buffer, dst_image, dst_image_layout, &region->dstSubresource,
&region->dstOffset, &region->extent, true);
&region->dstOffset, &region->extent, false);
}
}