From 8c78fdb328c8a8ea7c7c3cdd0e745f06938cd0ff Mon Sep 17 00:00:00 2001 From: Ilia Mirkin Date: Tue, 18 Oct 2016 00:21:13 -0400 Subject: [PATCH] gm107/ir: fix bit offset of tex lod setting for indirect texturing Signed-off-by: Ilia Mirkin Reviewed-by: Samuel Pitoiset Cc: mesa-stable@lists.freedesktop.org --- src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 3fedafdae3a..5ed2ad4ba93 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp @@ -2560,7 +2560,7 @@ CodeEmitterGM107::emitTEX() if (insn->tex.rIndirectSrc >= 0) { emitInsn (0xdeb80000); - emitField(0x35, 2, lodm); + emitField(0x25, 2, lodm); emitField(0x24, 1, insn->tex.useOffsets == 1); } else { emitInsn (0xc0380000); -- 2.30.2