Module: Mesa Branch: master Commit: 727018bb0c4fb7ca6e047937af5a58e17a1b4f7c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=727018bb0c4fb7ca6e047937af5a58e17a1b4f7c
Author: Ilia Mirkin <imir...@alum.mit.edu> Date: Fri Sep 26 02:21:55 2014 -0400 gm107/ir: fix DMUL opcode encoding Signed-off-by: Ilia Mirkin <imir...@alum.mit.edu> --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp index 944ceb2..9f4c435 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp @@ -924,15 +924,15 @@ CodeEmitterGM107::emitDMUL() { switch (insn->src(1).getFile()) { case FILE_GPR: - emitInsn(0x5c680000); + emitInsn(0x5c800000); emitGPR (0x14, insn->src(1)); break; case FILE_MEMORY_CONST: - emitInsn(0x4c680000); + emitInsn(0x4c800000); emitCBUF(0x22, -1, 0x14, 16, 2, insn->src(1)); break; case FILE_IMMEDIATE: - emitInsn(0x38680000); + emitInsn(0x38800000); emitIMMD(0x14, 19, insn->src(1)); break; default: _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit