diff options
author | Keith Whitwell <[email protected]> | 2004-03-29 16:01:18 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-03-29 16:01:18 +0000 |
commit | eeb5eeb2a62627d2a547f6739105c1418caf6d9d (patch) | |
tree | e64305a3ea183aefd422cdfe3c07999afe6a417c /src/mesa/shader/arbprogparse.c | |
parent | 292fa335d68ba82184e46b2dce87091f85e29e46 (diff) |
Accomodate ARB_fp XPD opcode separately from NV_fp's X2D.
Diffstat (limited to 'src/mesa/shader/arbprogparse.c')
-rw-r--r-- | src/mesa/shader/arbprogparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index 7fa2569c64b..c2365a281c1 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -2903,7 +2903,7 @@ parse_fp_instruction (GLcontext * ctx, GLubyte ** inst, case OP_XPD_SAT: fp->Saturate = 1; case OP_XPD: - fp->Opcode = FP_OPCODE_X2D; + fp->Opcode = FP_OPCODE_XPD; break; } |