diff options
author | Brian <brian@yutani.localnet.net> | 2007-05-02 18:42:57 -0600 |
---|---|---|
committer | Brian <brian@yutani.localnet.net> | 2007-05-02 18:42:57 -0600 |
commit | 77e7535c0f94b94d26aa2e3d7b19c812beaba2ae (patch) | |
tree | 81c9821846ec674d72eabd3f453194b91b7f3716 /src/mesa/shader/slang | |
parent | 5c1b53d58de68582c378e28fbb2fe4c0277139a9 (diff) |
fix some DDX,DDY mix-ups
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r-- | src/mesa/shader/slang/slang_ir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_ir.c b/src/mesa/shader/slang/slang_ir.c index 9517bdf29d..a6903cc8b6 100644 --- a/src/mesa/shader/slang/slang_ir.c +++ b/src/mesa/shader/slang/slang_ir.c @@ -63,7 +63,7 @@ static const slang_ir_info IrInfo[] = { { IR_ABS, "IR_ABS", OPCODE_ABS, 4, 1 }, { IR_NEG, "IR_NEG", OPCODE_NOP, 4, 1 }, /* special case: emit_negation() */ { IR_DDX, "IR_DDX", OPCODE_DDX, 4, 1 }, - { IR_DDX, "IR_DDY", OPCODE_DDX, 4, 1 }, + { IR_DDY, "IR_DDY", OPCODE_DDY, 4, 1 }, { IR_SIN, "IR_SIN", OPCODE_SIN, 1, 1 }, { IR_COS, "IR_COS", OPCODE_COS, 1, 1 }, { IR_NOISE1, "IR_NOISE1", OPCODE_NOISE1, 1, 1 }, |