mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 07:38:10 +02:00
freedreno: Fix FD_MESA_DEBUG=flush debug option
fd_batch_check_size() should be after fd_batch_unlock_submit(),
otherwise batch_flush() called from fd_batch_check_size()
would wait on mutex forever.
Fixes: 02298ed1 "freedreno: Add submit lock"
Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8205>
This commit is contained in:
parent
00c30420cb
commit
a6bdbd5c0f
1 changed files with 2 additions and 2 deletions
|
|
@ -334,8 +334,8 @@ fd_draw_vbo(struct pipe_context *pctx, const struct pipe_draw_info *info,
|
|||
if (fd_mesa_debug & FD_DBG_DDRAW)
|
||||
fd_context_all_dirty(ctx);
|
||||
|
||||
fd_batch_check_size(batch);
|
||||
fd_batch_unlock_submit(batch);
|
||||
fd_batch_check_size(batch);
|
||||
fd_batch_reference(&batch, NULL);
|
||||
|
||||
if (info == &new_info)
|
||||
|
|
@ -451,8 +451,8 @@ fd_clear(struct pipe_context *pctx, unsigned buffers,
|
|||
}
|
||||
}
|
||||
|
||||
fd_batch_check_size(batch);
|
||||
fd_batch_unlock_submit(batch);
|
||||
fd_batch_check_size(batch);
|
||||
|
||||
if (fallback) {
|
||||
fd_blitter_clear(pctx, buffers, color, depth, stencil);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue