diff options
author | Brian Paul <[email protected]> | 2002-04-21 20:37:04 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-04-21 20:37:04 +0000 |
commit | 12bab63f09975504c20a5dc9b9831a8072c43506 (patch) | |
tree | e1bb3a48e6a65cf6c563444ad12da5317b79d90b /src/mesa/main | |
parent | f3781eaafa54d1e4fef0de427b294c02257a3c4d (diff) |
Vertex program attribute arrays seem to work now. This includes fallbacks
to the conventional arrays when attribute arrays aren't enabled.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index a14347fb553..28a1921edd4 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.72 2002/04/21 18:49:18 brianp Exp $ */ +/* $Id: mtypes.h,v 1.73 2002/04/21 20:37:04 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1537,8 +1537,8 @@ struct matrix_stack #define _NEW_ARRAY_TEXCOORD_5 VERT_BIT_TEX5 #define _NEW_ARRAY_TEXCOORD_6 VERT_BIT_TEX6 #define _NEW_ARRAY_TEXCOORD_7 VERT_BIT_TEX7 -#define _NEW_ARRAY_ALL 0xffff #define _NEW_ARRAY_ATTRIB_0 0x10000 /* start at bit 16 */ +#define _NEW_ARRAY_ALL 0xffffffff #define _NEW_ARRAY_TEXCOORD(i) (_NEW_ARRAY_TEXCOORD_0 << (i)) |