mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 17:48:10 +02:00
radv/meta: fix saving push constants for depth/stensil resolves on compute
Found by inspection. Cc: mesa-stable Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37300>
This commit is contained in:
parent
818826fcf1
commit
2207d1e732
1 changed files with 2 additions and 1 deletions
|
|
@ -457,7 +457,8 @@ radv_depth_stencil_resolve_rendering_cs(struct radv_cmd_buffer *cmd_buffer, VkIm
|
|||
|
||||
radv_decompress_resolve_src(cmd_buffer, src_image, src_layout, ®ion);
|
||||
|
||||
radv_meta_save(&saved_state, cmd_buffer, RADV_META_SAVE_COMPUTE_PIPELINE | RADV_META_SAVE_DESCRIPTORS);
|
||||
radv_meta_save(&saved_state, cmd_buffer,
|
||||
RADV_META_SAVE_COMPUTE_PIPELINE | RADV_META_SAVE_DESCRIPTORS | RADV_META_SAVE_CONSTANTS);
|
||||
|
||||
struct radv_image_view *dst_iview = render->ds_att.resolve_iview;
|
||||
VkImageLayout dst_layout =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue