mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
zink: disable command reordering for compute-only contexts
this is pointless Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28880>
This commit is contained in:
parent
ffb082f811
commit
3a868970a2
1 changed files with 1 additions and 1 deletions
|
|
@ -5632,7 +5632,7 @@ zink_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags)
|
|||
zink_batch_rp(ctx);
|
||||
}
|
||||
|
||||
if (zink_debug & ZINK_DEBUG_NOREORDER)
|
||||
if (!is_compute_only && zink_debug & ZINK_DEBUG_NOREORDER)
|
||||
ctx->no_reorder = true;
|
||||
|
||||
if (!(flags & PIPE_CONTEXT_PREFER_THREADED) || flags & PIPE_CONTEXT_COMPUTE_ONLY) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue