diff options
author | Brian Paul <[email protected]> | 2005-11-02 18:06:12 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-11-02 18:06:12 +0000 |
commit | 90ebb581e60d29bd565ad4d8a49e642de7b0ce5d (patch) | |
tree | ccce2853c466080faecc21bd6013a029f2d76fcb /src/mesa/shader/nvfragprog.h | |
parent | 5a02209cd2a634406fd54808ef19baf5f2c098a1 (diff) |
Rename FRAG_OUTPUT_* tokens to FRAG_RESULT_* to match vertex program convention
Diffstat (limited to 'src/mesa/shader/nvfragprog.h')
-rw-r--r-- | src/mesa/shader/nvfragprog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/shader/nvfragprog.h b/src/mesa/shader/nvfragprog.h index bd9c8bb06c1..8596ba08e1d 100644 --- a/src/mesa/shader/nvfragprog.h +++ b/src/mesa/shader/nvfragprog.h @@ -123,10 +123,10 @@ struct fp_src_register GLuint File:4; GLuint Index:8; GLuint Swizzle:12; - GLuint NegateBase:4; /* ARB: negate/extended negate. + GLuint NegateBase:4; /* ARB: negate/extended negate, per component. NV: negate before absolute value? */ - GLuint Abs:1; /* NV: take absolute value? */ - GLuint NegateAbs:1; /* NV: negate after absolute value? */ + GLuint Abs:1; /* NV: take absolute value (all components) ? */ + GLuint NegateAbs:1; /* NV: negate (all components) after absolute value? */ }; |