summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/swrast/s_copypix.c3
1 files changed, 2 insertions, 1 deletions
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;