From: Roland Scheidegger Date: Tue, 12 Feb 2013 15:45:49 +0000 (+0100) Subject: nv50: fix bogus parameters when processing sample instructions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2947f00bc466a03e3cc99fcf6c6334c2a896bfbe;p=mesa.git nv50: fix bogus parameters when processing sample instructions Discovered accidentally when changing SAMPLE_L definition. Turns out the lod arguments were already correct for the new definition but the compare and derivs were not. Reviewed-by: Christoph Bumiller --- diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_from_tgsi.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_from_tgsi.cpp index 5078eb4d6f8..acec6230fa8 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir_from_tgsi.cpp +++ b/src/gallium/drivers/nv50/codegen/nv50_ir_from_tgsi.cpp @@ -2065,7 +2065,7 @@ Converter::handleInstruction(const struct tgsi_full_instruction *insn) case TGSI_OPCODE_SAMPLE_L: case TGSI_OPCODE_SAMPLE_C: case TGSI_OPCODE_SAMPLE_C_LZ: - handleTEX(dst0, 1, 2, 0x30, 0x31, 0x40, 0x50); + handleTEX(dst0, 1, 2, 0x30, 0x30, 0x30, 0x40); break; case TGSI_OPCODE_TXF: case TGSI_OPCODE_LOAD: