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/nvfragparse.c | |
parent | 5a02209cd2a634406fd54808ef19baf5f2c098a1 (diff) |
Rename FRAG_OUTPUT_* tokens to FRAG_RESULT_* to match vertex program convention
Diffstat (limited to 'src/mesa/shader/nvfragparse.c')
-rw-r--r-- | src/mesa/shader/nvfragparse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/nvfragparse.c b/src/mesa/shader/nvfragparse.c index 520bf056273..e1eeebd9a3f 100644 --- a/src/mesa/shader/nvfragparse.c +++ b/src/mesa/shader/nvfragparse.c @@ -843,7 +843,7 @@ Parse_OutputReg(struct parse_state *parseState, GLint *outputRegNum) /* try to match an output register name */ for (j = 0; OutputRegisters[j]; j++) { if (_mesa_strcmp((const char *) token, OutputRegisters[j]) == 0) { - static GLuint bothColors = (1 << FRAG_OUTPUT_COLR) | (1 << FRAG_OUTPUT_COLH); + static GLuint bothColors = (1 << FRAG_RESULT_COLR) | (1 << FRAG_RESULT_COLH); *outputRegNum = j; parseState->outputsWritten |= (1 << j); if ((parseState->outputsWritten & bothColors) == bothColors) { |