diff options
author | Brian Paul <[email protected]> | 2002-06-25 15:25:17 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-25 15:25:17 +0000 |
commit | 7082420653d06d572ed04843abad651f71a9f90d (patch) | |
tree | 17f4a052d843df2d18a1d90f6fc0c90c9afb4e68 /src/mesa/drivers/x11/xm_tri.c | |
parent | 07bb9884a5decd19119d9474af06c0d7ddc726b5 (diff) |
removed extra right-paren
Diffstat (limited to 'src/mesa/drivers/x11/xm_tri.c')
-rw-r--r-- | src/mesa/drivers/x11/xm_tri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/x11/xm_tri.c b/src/mesa/drivers/x11/xm_tri.c index 5615f5ec2f7..8e68f708c08 100644 --- a/src/mesa/drivers/x11/xm_tri.c +++ b/src/mesa/drivers/x11/xm_tri.c @@ -1,4 +1,4 @@ -/* $Id: xm_tri.c,v 1.25 2002/06/25 08:44:27 keithw Exp $ */ +/* $Id: xm_tri.c,v 1.26 2002/06/25 15:25:17 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1532,7 +1532,7 @@ static swrast_tri_func get_triangle_func( GLcontext *ctx ) if (ctx->Texture._EnabledUnits) return (swrast_tri_func) NULL; if (swrast->_RasterMask & MULTI_DRAW_BIT) return (swrast_tri_func) NULL; if (ctx->Polygon.CullFlag && - ctx->Polygon.CullFaceMode == GL_FRONT_AND_BACK)) + ctx->Polygon.CullFaceMode == GL_FRONT_AND_BACK) return (swrast_tri_func) NULL; if (xmesa->xm_buffer->buffer==XIMAGE) { |