diff options
author | Brian Paul <[email protected]> | 2003-05-10 04:36:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-05-10 04:36:11 +0000 |
commit | 3fdb8fbfc5eb82822ac8b5f3e2376249ae7c73ca (patch) | |
tree | c585b3cbeae28cfa23473fc9267eac5d9a6d6b33 /src/mesa/main/nvfragprog.h | |
parent | ea31ca47200d96b7cc687989ee7f9953819fddbb (diff) |
fix scalar literal parsing glitches
Diffstat (limited to 'src/mesa/main/nvfragprog.h')
-rw-r--r-- | src/mesa/main/nvfragprog.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mesa/main/nvfragprog.h b/src/mesa/main/nvfragprog.h index 2e9d82975c3..5505582eb1e 100644 --- a/src/mesa/main/nvfragprog.h +++ b/src/mesa/main/nvfragprog.h @@ -1,4 +1,4 @@ -/* $Id: nvfragprog.h,v 1.6 2003/04/05 00:38:09 brianp Exp $ */ +/* $Id: nvfragprog.h,v 1.7 2003/05/10 04:36:11 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -50,6 +50,10 @@ #define FRAG_ATTRIB_TEX6 10 #define FRAG_ATTRIB_TEX7 11 +#define FRAG_OUTPUT_COLR 0 +#define FRAG_OUTPUT_COLH 1 +#define FRAG_OUTPUT_DEPR 2 + /* Location of register sets within the whole register file */ #define FP_INPUT_REG_START 0 |