mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 11:48:06 +02:00
pan/va: Serialize memory stores
We could do better :( Fixes spilling. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16314>
This commit is contained in:
parent
5831c44121
commit
040a3ef24e
1 changed files with 1 additions and 1 deletions
|
|
@ -976,7 +976,7 @@ va_lower_flow_control(bi_context *ctx)
|
|||
/* We may need to wait */
|
||||
if (I->op == BI_OPCODE_BARRIER)
|
||||
va_add_flow(ctx, I, VA_FLOW_WAIT);
|
||||
else if (valhall_opcodes[I->op].nr_staging_dests > 0 || I->op == BI_OPCODE_BLEND)
|
||||
else if (bi_opcode_props[I->op].message)
|
||||
va_add_flow(ctx, I, VA_FLOW_WAIT0);
|
||||
|
||||
/* Lastly, we may need to reconverge. If we need reconvergence, it
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue