diff options
author | Brian Paul <[email protected]> | 2002-10-09 19:38:32 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-09 19:38:32 +0000 |
commit | 008a5dd7bb0636e4faa0606e9e4aac51d5517e16 (patch) | |
tree | de3b7a491dfdf1195d2e1e5348ac6ff90cf16889 /src | |
parent | 85678e0399eef682aa283fc1f952afa258af92a7 (diff) |
use new vertex bitfield tokens
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/tnl/t_imm_api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/tnl/t_imm_api.c b/src/mesa/tnl/t_imm_api.c index 7aea94c3fac..9f9d4ab5d11 100644 --- a/src/mesa/tnl/t_imm_api.c +++ b/src/mesa/tnl/t_imm_api.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_api.c,v 1.32 2002/10/03 23:27:22 brianp Exp $ */ +/* $Id: t_imm_api.c,v 1.33 2002/10/09 19:38:32 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -94,7 +94,7 @@ void _tnl_flush_vertices( GLcontext *ctx, GLuint flags ) if (IM->Flag[IM->Start]) { if ((flags & FLUSH_UPDATE_CURRENT) || IM->Count > IM->Start || - (IM->Flag[IM->Start] & (VERT_BEGIN|VERT_END))) { + (IM->Flag[IM->Start] & (VERT_BIT_BEGIN | VERT_BIT_END))) { _tnl_flush_immediate( ctx, IM ); } } |