mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-25 02:40:46 +02:00
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:
parent
fff16a9748
commit
4428541c54
1 changed files with 1 additions and 1 deletions
|
|
@ -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, ®ion->dstSubresource,
|
||||
®ion->dstOffset, ®ion->extent, true);
|
||||
®ion->dstOffset, ®ion->extent, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue