diff options
author | Brian Paul <[email protected]> | 2003-03-15 17:33:25 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-03-15 17:33:25 +0000 |
commit | 350353adcd75f94fda63c787c86961716114e0bf (patch) | |
tree | d91f40c8a2d55f4f0e3e12d14dc075a8af83b92e /src/mesa/main/nvfragparse.c | |
parent | add99d01ee7bf22e87c2c13b3476f6d70d0b3a7d (diff) |
Fix up some fragment program texture enable issues.
Implemented TXD instruction.
Diffstat (limited to 'src/mesa/main/nvfragparse.c')
-rw-r--r-- | src/mesa/main/nvfragparse.c | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/mesa/main/nvfragparse.c b/src/mesa/main/nvfragparse.c index 60b15bcd06e..0f75d6c36f6 100644 --- a/src/mesa/main/nvfragparse.c +++ b/src/mesa/main/nvfragparse.c @@ -1,4 +1,4 @@ -/* $Id: nvfragparse.c,v 1.13 2003/03/14 15:40:59 brianp Exp $ */ +/* $Id: nvfragparse.c,v 1.14 2003/03/15 17:33:26 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -42,20 +42,6 @@ #include "nvprogram.h" -#define FRAG_ATTRIB_WPOS 0 -#define FRAG_ATTRIB_COL0 1 -#define FRAG_ATTRIB_COL1 2 -#define FRAG_ATTRIB_FOGC 3 -#define FRAG_ATTRIB_TEX0 4 -#define FRAG_ATTRIB_TEX1 5 -#define FRAG_ATTRIB_TEX2 6 -#define FRAG_ATTRIB_TEX3 7 -#define FRAG_ATTRIB_TEX4 8 -#define FRAG_ATTRIB_TEX5 9 -#define FRAG_ATTRIB_TEX6 10 -#define FRAG_ATTRIB_TEX7 11 - - #define INPUT_1V 1 #define INPUT_2V 2 #define INPUT_3V 3 |