diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-03-29 17:27:59 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-03-29 17:27:59 +0000 |
commit | 103bc0f75c00dfcf671dc50d8d9666f88a42a59d (patch) | |
tree | a77d919e21188e7c1c36718fb317f5c43d39383e /src/mesa/tnl/t_vb_vertex.c | |
parent | 23d319fc7dda3ae3639c05cd2c7a8bcdac9eac36 (diff) |
Replaced ClipEnabled[] array and _AnyClip with ClipPlanesEnabled bitmask.
Diffstat (limited to 'src/mesa/tnl/t_vb_vertex.c')
-rw-r--r-- | src/mesa/tnl/t_vb_vertex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_vb_vertex.c b/src/mesa/tnl/t_vb_vertex.c index 9026ec5144..4369df16f6 100644 --- a/src/mesa/tnl/t_vb_vertex.c +++ b/src/mesa/tnl/t_vb_vertex.c @@ -1,4 +1,4 @@ -/* $Id: t_vb_vertex.c,v 1.12 2002/01/22 14:35:17 brianp Exp $ */ +/* $Id: t_vb_vertex.c,v 1.13 2002/03/29 17:27:59 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -79,7 +79,7 @@ static void NAME( GLcontext *ctx, \ GLuint p; \ \ for (p = 0; p < ctx->Const.MaxClipPlanes; p++) \ - if (ctx->Transform.ClipEnabled[p]) { \ + if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { \ GLuint nr, i; \ const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \ const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \ @@ -211,7 +211,7 @@ static GLboolean run_vertex_stage( GLcontext *ctx, /* Test userclip planes. This contributes to VB->ClipMask, so * is essentially required to be in this stage. */ - if (ctx->Transform._AnyClip) { + if (ctx->Transform.ClipPlanesEnabled) { usercliptab[VB->ClipPtr->size]( ctx, VB->ClipPtr, store->clipmask, |