From: Brian Date: Wed, 11 Apr 2007 14:47:05 +0000 (-0600) Subject: fix zoomed depth copies (bug 10608) X-Git-Tag: 062012170305~19613 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=183d8e06206dd264adabdf8d6b6ad06143d237e8;p=profile%2Fivi%2Fmesa.git fix zoomed depth copies (bug 10608) --- diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c index 8f37a3d..ae5bdab 100644 --- a/src/mesa/swrast/s_copypix.c +++ b/src/mesa/swrast/s_copypix.c @@ -536,8 +536,7 @@ copy_depth_pixels( GLcontext *ctx, GLint srcx, GLint srcy, span.end = width; if (fb->Visual.rgbMode) { if (zoom) - _swrast_write_zoomed_rgba_span(ctx, destx, desty, &span, - span.array->rgba); + _swrast_write_zoomed_depth_span(ctx, destx, desty, &span); else _swrast_write_rgba_span(ctx, &span); }