diff options
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp index aec9b5251a0..754a31daa85 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -1225,7 +1225,14 @@ CodeEmitterGK110::emitEXPORT(const Instruction *i) void CodeEmitterGK110::emitOUT(const Instruction *i) { - emitNOP(i); // TODO + assert(i->src(0).getFile() == FILE_GPR); + + emitForm_21(i, 0x1f0, 0xb70); + + if (i->op == OP_EMIT) + code[1] |= 1 << 10; + if (i->op == OP_RESTART || i->subOp == NV50_IR_SUBOP_EMIT_RESTART) + code[1] |= 1 << 11; } void |