summaryrefslogtreecommitdiff
path: root/src/mesa/main/context.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2000-10-30 18:50:42 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2000-10-30 18:50:42 +0000
commit365dc68c3978de3c28e61d4c7151aece219694d7 (patch)
tree340a9ea569fe7ab8a8270ee460f1a858c9912f68 /src/mesa/main/context.c
parent9499e017b7e05411a32b3e4fa94885eaec0d7277 (diff)
Rearrange VERT_* flags to support 4 texture units.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r--src/mesa/main/context.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 26ef3c43dd..998ebeeb05 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1,4 +1,4 @@
-/* $Id: context.c,v 1.100 2000/10/30 16:32:43 brianp Exp $ */
+/* $Id: context.c,v 1.101 2000/10/30 18:50:42 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -904,9 +904,10 @@ init_attrib_groups( GLcontext *ctx )
VERT_SPEC_RGB |
VERT_FOG_COORD |
VERT_EDGE |
- VERT_TEX0_1 |
- VERT_TEX1_1 |
- VERT_TEX2_1 | /* XXX fix for MAX_TEXTURE_UNITS > 3 */
+ VERT_TEX0_12 |
+ VERT_TEX1_12 |
+ VERT_TEX2_12 |
+ VERT_TEX3_12 |
VERT_MATERIAL);
init_fallback_arrays( ctx );