removed extra right-paren
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 25 Jun 2002 15:25:17 +0000 (15:25 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 25 Jun 2002 15:25:17 +0000 (15:25 +0000)
src/mesa/drivers/osmesa/osmesa.c
src/mesa/drivers/x11/xm_tri.c

index d5c37c3e0025c0b08722f1260d727f61b3a25409..eb0515d3d4721f6ac4a2910c041c73a07c28bb89 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: osmesa.c,v 1.83 2002/06/25 08:44:56 keithw Exp $ */
+/* $Id: osmesa.c,v 1.84 2002/06/25 15:25:17 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1961,7 +1961,7 @@ osmesa_choose_triangle_function( GLcontext *ctx )
        osmesa->format != OSMESA_BGRA &&
        osmesa->format != OSMESA_ARGB)   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 (swrast->_RasterMask == DEPTH_BIT &&
index 5615f5ec2f7b3d73c30e0aed09c2b4d4f274db63..8e68f708c0833a6a5a372f69757113511a750785 100644 (file)
@@ -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) {