diff options
author | Brian <[email protected]> | 2007-01-08 16:56:52 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-01-08 16:56:52 -0700 |
commit | 20aec24ac7b4fba169dc6889b093f4dcc2c62bb6 (patch) | |
tree | 2ff292bcf2fe034ddcf27365361e2a77407c7e07 /src/mesa/shader/slang/slang_emit.c | |
parent | 41a4e828d9e06e42bba78166975cb283674c0d9f (diff) |
implement biased texture functions
Diffstat (limited to 'src/mesa/shader/slang/slang_emit.c')
-rw-r--r-- | src/mesa/shader/slang/slang_emit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/slang/slang_emit.c b/src/mesa/shader/slang/slang_emit.c index aee3fb2ceb6..c62a07d97a1 100644 --- a/src/mesa/shader/slang/slang_emit.c +++ b/src/mesa/shader/slang/slang_emit.c @@ -91,8 +91,8 @@ static slang_ir_info IrInfo[] = { { IR_VAR, "IR_VAR", 0, 0, 0 }, { IR_VAR_DECL, "IR_VAR_DECL", 0, 0, 0 }, { IR_TEX, "IR_TEX", OPCODE_TEX, 4, 1 }, - { IR_TEXB, "IR_TEXB", OPCODE_TXB, 4, 2 }, - { IR_TEXP, "IR_TEXP", OPCODE_TXP, 4, 2 }, + { IR_TEXB, "IR_TEXB", OPCODE_TXB, 4, 1 }, + { IR_TEXP, "IR_TEXP", OPCODE_TXP, 4, 1 }, { IR_FLOAT, "IR_FLOAT", 0, 0, 0 }, { IR_FIELD, "IR_FIELD", 0, 0, 0 }, { IR_NOP, NULL, OPCODE_NOP, 0, 0 } |