mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 07:30:09 +01:00
radv: Don't skip layout transitions that only differ in render loop.
This can result in meaningful compression changes so we shouldn't skip.
Fixes: 66131ceb8b "radv: Pass through render loop detection to internal layout decisions."
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7004>
This commit is contained in:
parent
909e06075d
commit
da36577558
1 changed files with 1 additions and 1 deletions
|
|
@ -6290,7 +6290,7 @@ static void radv_handle_image_transition(struct radv_cmd_buffer *cmd_buffer,
|
|||
return;
|
||||
}
|
||||
|
||||
if (src_layout == dst_layout)
|
||||
if (src_layout == dst_layout && src_render_loop == dst_render_loop)
|
||||
return;
|
||||
|
||||
unsigned src_queue_mask =
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue