radv: Fix setting the viewport for depth stencil FS resolves
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Fixes: 704fbbb ("radv/meta: rework depth/stencil resolves using graphics")
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39836>
This commit is contained in:
Konstantin Seurer 2026-02-09 09:33:55 +01:00 committed by Marge Bot
parent bc86c5adae
commit f574de2249

View file

@ -614,8 +614,8 @@ radv_meta_resolve_depth_stencil_fs(struct radv_cmd_buffer *cmd_buffer, struct ra
radv_CmdSetViewport(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1,
&(VkViewport){
.x = region->srcOffset.x,
.y = region->srcOffset.y,
.x = region->dstOffset.x,
.y = region->dstOffset.y,
.width = region->extent.width,
.height = region->extent.height,
.minDepth = 0.0f,