diff options
author | Ilia Mirkin <[email protected]> | 2015-11-18 14:23:35 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-18 14:26:16 -0500 |
commit | 8e68113c1a78c48f26e820f4beb2dda9e4b99f32 (patch) | |
tree | a236e1619e47ebc71e4b77efdccd815afa72fa9b /src/gallium/drivers | |
parent | 2631bfd62c899dfa2a7095685c4f6874d5e9704d (diff) |
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 <[email protected]>
Cc: [email protected]
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp index 2a13e1086a0..9f84de03a4a 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp @@ -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); |