From ec9bbac7c7f42261de9df6f4029d7e051ae9225c Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Sun, 22 Oct 2006 22:25:46 +0000 Subject: silence used var warnings --- src/mesa/swrast/s_copypix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c index ec04143214..761ab724e9 100644 --- a/src/mesa/swrast/s_copypix.c +++ b/src/mesa/swrast/s_copypix.c @@ -845,7 +845,8 @@ fast_copy_pixels(GLcontext *ctx, srcRb = srcFb->_DepthBuffer; dstRb = dstFb->_DepthBuffer; } - else if (type == GL_DEPTH_STENCIL_EXT) { + else { + ASSERT(type == GL_DEPTH_STENCIL_EXT); /* XXX correct? */ srcRb = srcFb->Attachment[BUFFER_DEPTH].Renderbuffer; dstRb = dstFb->Attachment[BUFFER_DEPTH].Renderbuffer; -- cgit v1.2.3