mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
nvc0/ir: actually emit AFETCH on kepler
Looks like this was forgotten in the commit which added the AFETCH logic. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Cc: mesa-stable@lists.freedesktop.org
This commit is contained in:
parent
2631bfd62c
commit
8e68113c1a
1 changed files with 3 additions and 0 deletions
|
|
@ -2357,6 +2357,9 @@ CodeEmitterNVC0::emitInstruction(Instruction *insn)
|
|||
case OP_PFETCH:
|
||||
emitPFETCH(insn);
|
||||
break;
|
||||
case OP_AFETCH:
|
||||
emitAFETCH(insn);
|
||||
break;
|
||||
case OP_EMIT:
|
||||
case OP_RESTART:
|
||||
emitOUT(insn);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue