diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-12-17 01:46:58 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-12-17 01:46:58 +0000 |
commit | c843a1a039685e143b21297ef5be0e16ea18dfd5 (patch) | |
tree | 60b58bbedb1833cc815160aac083a47fc981463d /src/mesa | |
parent | 54772892bd3d54ab0c257b6def639a704e640a66 (diff) |
remove conditional in RESET_STIPPLE to fix conformance failure
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/tnl/t_vb_render.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_vb_render.c b/src/mesa/tnl/t_vb_render.c index cc8deff464..794ef64705 100644 --- a/src/mesa/tnl/t_vb_render.c +++ b/src/mesa/tnl/t_vb_render.c @@ -1,8 +1,8 @@ -/* $Id: t_vb_render.c,v 1.25 2001/12/14 02:51:45 brianp Exp $ */ +/* $Id: t_vb_render.c,v 1.26 2001/12/17 01:46:58 brianp Exp $ */ /* * Mesa 3-D graphics library - * Version: 3.5 + * Version: 4.0.1 * * Copyright (C) 1999-2001 Brian Paul All Rights Reserved. * @@ -142,7 +142,7 @@ do { \ #define TAG(x) clip_##x##_verts #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x ) -#define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx ) +#define RESET_STIPPLE tnl->Driver.Render.ResetLineStipple( ctx ) #define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE #define PRESERVE_VB_DEFS #include "t_vb_rendertmp.h" @@ -229,7 +229,7 @@ static void clip_elt_triangles( GLcontext *ctx, (void) (LineFunc && TriangleFunc && QuadFunc); \ (void) elt; (void) stipple -#define RESET_STIPPLE if (stipple) tnl->Driver.Render.ResetLineStipple( ctx ) +#define RESET_STIPPLE tnl->Driver.Render.ResetLineStipple( ctx ) #define RESET_OCCLUSION ctx->OcclusionResult = GL_TRUE #define INIT(x) tnl->Driver.Render.PrimitiveNotify( ctx, x ) #define RENDER_TAB_QUALIFIER |