fixed typo: replaced |= with != in conditional

This commit is contained in:
Brian Paul 1999-11-09 07:59:54 +00:00
parent 0822c1050e
commit f6a79d045c
1 changed files with 2 additions and 2 deletions

View File

@ -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 {