diff options
author | Ilia Mirkin <[email protected]> | 2016-10-18 00:21:13 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-10-18 09:56:14 -0400 |
commit | 8c78fdb328c8a8ea7c7c3cdd0e745f06938cd0ff (patch) | |
tree | 48f003e908b28f9befe1060edb53e2dced426427 /src | |
parent | ecea2f69ef8c07bd7b08f659b214a83f64ea2daa (diff) |
gm107/ir: fix bit offset of tex lod setting for indirect texturing
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
Cc: [email protected]
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp | 2 |
1 files changed, 1 insertions, 1 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 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); |