From 183d8e06206dd264adabdf8d6b6ad06143d237e8 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 11 Apr 2007 08:47:05 -0600 Subject: fix zoomed depth copies (bug 10608) --- src/mesa/swrast/s_copypix.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c index 8f37a3dc8e..ae5bdab3dd 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); } -- cgit v1.2.3