comment changes
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 18 Dec 2002 15:02:19 +0000 (15:02 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 18 Dec 2002 15:02:19 +0000 (15:02 +0000)
src/mesa/swrast/s_drawpix.c
src/mesa/swrast/s_triangle.c

index b7ac3f7ade71a9ddcdcccfdb4dbea94d59688f84..479c9cf99f6340d8ecab5eb28c59a9374001294d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: s_drawpix.c,v 1.41 2002/12/05 04:48:53 brianp Exp $ */
+/* $Id: s_drawpix.c,v 1.42 2002/12/18 15:02:19 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -191,8 +191,8 @@ fast_draw_pixels(GLcontext *ctx, GLint x, GLint y,
          /* setup array of fragment Z value to pass to zoom function */
          GLdepth z = (GLdepth) (ctx->Current.RasterPos[2] * ctx->DepthMaxF);
          GLint i;
-         if (drawWidth < MAX_WIDTH)
-            return GL_FALSE; /* take the general path solution */
+         if (drawWidth > MAX_WIDTH)
+            return GL_FALSE; /* fall back to general case path */
          for (i=0; i<drawWidth; i++)
             zSpan[i] = z;
 
index d1575cb691d985e93a602834905e68613708bffa..324a51582c19eb3e421c06db96fcc88b0bb2e7ab 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: s_triangle.c,v 1.65 2002/11/13 16:51:01 brianp Exp $ */
+/* $Id: s_triangle.c,v 1.66 2002/12/18 15:02:19 brianp Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1065,7 +1065,7 @@ _swrast_choose_triangle( GLcontext *ctx )
          magFilter = texObj2D ? texObj2D->MagFilter : (GLenum) 0;
          envMode = ctx->Texture.Unit[0].EnvMode;
 
-         /* First see if we can used an optimized 2-D texture function */
+         /* First see if we can use an optimized 2-D texture function */
          if (ctx->Texture._EnabledUnits == 1
              && ctx->Texture.Unit[0]._ReallyEnabled == TEXTURE_2D_BIT
              && texObj2D->WrapS==GL_REPEAT