summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/glide/fxvb.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2002-11-04 20:29:04 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2002-11-04 20:29:04 +0000
commit8115e29ddc2ea0407c3680bcc17c845f0db86332 (patch)
tree0089ad1c666166c42b2c8f0106b4cd34c71abf0d /src/mesa/drivers/glide/fxvb.c
parentdf45a985ed20a425c508a2a38a97f17bedd71eb5 (diff)
misc driver updates (Daniel Borca)
Diffstat (limited to 'src/mesa/drivers/glide/fxvb.c')
-rw-r--r--src/mesa/drivers/glide/fxvb.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/glide/fxvb.c b/src/mesa/drivers/glide/fxvb.c
index 00203f17fb..d14e53d21d 100644
--- a/src/mesa/drivers/glide/fxvb.c
+++ b/src/mesa/drivers/glide/fxvb.c
@@ -1,4 +1,4 @@
-/* $Id: fxvb.c,v 1.15 2002/10/24 23:57:23 brianp Exp $ */
+/* $Id: fxvb.c,v 1.16 2002/11/04 20:29:04 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -304,18 +304,18 @@ void fxBuildVertices( GLcontext *ctx, GLuint start, GLuint count,
if (!newinputs)
return;
- if (newinputs & VERT_CLIP) {
+ if (newinputs & VERT_BIT_CLIP) {
setup_tab[fxMesa->SetupIndex].emit( ctx, start, count, v );
} else {
GLuint ind = 0;
- if (newinputs & VERT_RGBA)
+ if (newinputs & VERT_BIT_COLOR0)
ind |= SETUP_RGBA;
- if (newinputs & VERT_TEX0)
+ if (newinputs & VERT_BIT_TEX0)
ind |= SETUP_TMU0;
- if (newinputs & VERT_TEX1)
+ if (newinputs & VERT_BIT_TEX1)
ind |= SETUP_TMU0|SETUP_TMU1;
if (fxMesa->SetupIndex & SETUP_PTEX)