Module: Mesa Branch: master Commit: cba89fdaa1e7360808cef0f6871930c90ca3ef4d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=cba89fdaa1e7360808cef0f6871930c90ca3ef4d
Author: Samuel Pitoiset <[email protected]> Date: Sun Feb 28 22:38:43 2016 +0100 gk110/ir: fix wrong emission of BAR.SYNC Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]> --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp | 1 - 1 file changed, 1 deletion(-) 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 8512d0d..0e7a237 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp @@ -1273,7 +1273,6 @@ CodeEmitterGK110::emitBAR(const Instruction *i) case NV50_IR_SUBOP_BAR_RED_OR: code[1] |= 0x90; break; case NV50_IR_SUBOP_BAR_RED_POPC: code[1] |= 0x10; break; default: - code[1] |= 0x20; assert(i->subOp == NV50_IR_SUBOP_BAR_SYNC); break; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
