remove stray span.y++
authorBrian Paul <brian.paul@tungstengraphics.com>
Sat, 29 Jan 2005 17:28:45 +0000 (17:28 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Sat, 29 Jan 2005 17:28:45 +0000 (17:28 +0000)
src/mesa/swrast/s_bitmap.c

index 1afb487..84f0864 100644 (file)
@@ -103,7 +103,7 @@ _swrast_Bitmap( GLcontext *ctx, GLint px, GLint py,
    if (ctx->Texture._EnabledCoordUnits)
       _swrast_span_default_texcoords(ctx, &span);
 
-   for (row = 0; row < height; row++, span.y++) {
+   for (row = 0; row < height; row++) {
       const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
                  bitmap, width, height, GL_COLOR_INDEX, GL_BITMAP, row, 0);