From 3bde211549b3a819c33793fb87f80121d0f028f2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sat, 29 Jan 2005 17:28:45 +0000 Subject: [PATCH] remove stray span.y++ --- src/mesa/swrast/s_bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/swrast/s_bitmap.c b/src/mesa/swrast/s_bitmap.c index 1afb487..84f0864 100644 --- a/src/mesa/swrast/s_bitmap.c +++ b/src/mesa/swrast/s_bitmap.c @@ -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); -- 2.7.4