diff options
author | Brian Paul <[email protected]> | 2002-01-22 14:35:16 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-22 14:35:16 +0000 |
commit | 4c8fadc6d996c8c433826c4c763104b7d69cf7e5 (patch) | |
tree | 3e85b89009cf5beaf25c28bbe3748f1c90ef9cab /src/mesa/x86 | |
parent | 9b681dcc17c9c6d25aa40fa59cd617ae911cf988 (diff) |
Clean-up/renaming of the per-vertex attribute bits, specifically, the
VERT_BIT_* flags are new and used in many places (esp in T&L code).
Updated some comments for doxygen.
Various code clean-ups.
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/gen_matypes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/gen_matypes.c b/src/mesa/x86/gen_matypes.c index 12021d70c4c..867486d0b7c 100644 --- a/src/mesa/x86/gen_matypes.c +++ b/src/mesa/x86/gen_matypes.c @@ -1,4 +1,4 @@ -/* $Id: gen_matypes.c,v 1.5 2001/12/18 04:06:45 brianp Exp $ */ +/* $Id: gen_matypes.c,v 1.6 2002/01/22 14:35:16 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -153,7 +153,7 @@ int main( int argc, char **argv ) DEFINE( "VERT_NORM ", VERT_NORMAL_BIT ); DEFINE( "VERT_RGBA ", VERT_COLOR0_BIT ); DEFINE( "VERT_SPEC_RGB ", VERT_COLOR1_BIT ); - DEFINE( "VERT_FOG_COORD ", VERT_FOG_BIT ); + DEFINE( "VERT_FOG_COORD ", VERT_BIT_FOG ); DEFINE( "VERT_INDEX ", VERT_INDEX_BIT ); DEFINE( "VERT_EDGE ", VERT_EDGEFLAG_BIT ); DEFINE( "VERT_TEX0 ", VERT_TEX0_BIT ); |