From ba467e86fe2a6f6e34221e5f3f718f9c708df1b4 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 30 Sep 2004 15:39:43 +0000 Subject: set span.y prior to each span write in draw_depth_pixels, like Karl's other fix --- src/mesa/swrast/s_drawpix.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 141054c2f6..205022a89d 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.2 * * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * @@ -659,17 +659,17 @@ draw_depth_pixels( GLcontext *ctx, GLint x, GLint y, && ctx->Visual.rgbMode && width <= MAX_WIDTH) { /* Special case: directly write 16-bit depth values */ - GLint row; - span.x = x; - span.y = y; - span.end = width; - for (row = 0; row < height; row++, span.y++) { + GLint row, spanY = y; + for (row = 0; row < height; row++, spanY++) { const GLushort *zSrc = (const GLushort *) _mesa_image_address(unpack, pixels, width, height, GL_DEPTH_COMPONENT, type, 0, row, 0); GLint i; for (i = 0; i < width; i++) span.array->z[i] = zSrc[i]; + span.x = x; + span.y = spanY; + span.end = width; _swrast_write_rgba_span(ctx, &span); } } @@ -681,11 +681,8 @@ draw_depth_pixels( GLcontext *ctx, GLint x, GLint y, && width <= MAX_WIDTH) { /* Special case: shift 32-bit values down to ctx->Visual.depthBits */ const GLint shift = 32 - ctx->Visual.depthBits; - GLint row; - span.x = x; - span.y = y; - span.end = width; - for (row = 0; row < height; row++, span.y++) { + GLint row, spanY = y; + for (row = 0; row < height; row++, spanY++) { const GLuint *zSrc = (const GLuint *) _mesa_image_address(unpack, pixels, width, height, GL_DEPTH_COMPONENT, type, 0, row, 0); @@ -697,6 +694,9 @@ draw_depth_pixels( GLcontext *ctx, GLint x, GLint y, for (col = 0; col < width; col++) span.array->z[col] = zSrc[col] >> shift; } + span.x = x; + span.y = spanY; + span.end = width; _swrast_write_rgba_span(ctx, &span); } } -- cgit v1.2.3