projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0822c10
)
fixed typo: replaced |= with != in conditional
author
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 9 Nov 1999 07:59:54 +0000
(07:59 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Tue, 9 Nov 1999 07:59:54 +0000
(07:59 +0000)
src/mesa/main/varray.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/varray.c
b/src/mesa/main/varray.c
index 26baa21ae1eb6e7482464794023af39435bc3fe0..6412f293fb3ba5e57cb3114ff325f8305649e5f8 100644
(file)
--- a/
src/mesa/main/varray.c
+++ b/
src/mesa/main/varray.c
@@
-1,4
+1,4
@@
-/* $Id: varray.c,v 1.
8 1999/11/08 07:36:45
brianp Exp $ */
+/* $Id: varray.c,v 1.
9 1999/11/09 07:59:54
brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-591,7
+591,7
@@
void gl_DrawArrays( GLcontext *ctx, GLenum mode, GLint start, GLsizei count )
tc[i].stride = client_data->StrideB;
tc[i].size = client_data->Size;
tc[i].flags = VEC_NOT_WRITABLE|VEC_GOOD_STRIDE;
- if (tc[i].stride
|
= 4 * sizeof(GLfloat))
+ if (tc[i].stride
!
= 4 * sizeof(GLfloat))
tc[i].flags ^= VEC_STRIDE_FLAGS;
update |= flag;
} else {