st/mesa: no-op glCopyPixels if source region is out of bounds
authorBrian Paul <brianp@vmware.com>
Fri, 20 Apr 2012 22:45:12 +0000 (16:45 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 23 Apr 2012 19:27:07 +0000 (13:27 -0600)
If the source region for a glCopyPixels is completely outside the
source buffer bounds, no-op the copy.  Fixes a failed assertion.

NOTE: This is a candidate for the 8.0 branch.

Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
src/mesa/state_tracker/st_cb_drawpixels.c

index 5e078a85edfa35b28aba155ae566038bb54f85ce..9a3f22465c6dd5418043185cb8bdd867bc356f07 100644 (file)
@@ -1509,7 +1509,15 @@ st_CopyPixels(struct gl_context *ctx, GLint srcx, GLint srcy,
    readY = srcy;
    readW = width;
    readH = height;
-   _mesa_clip_readpixels(ctx, &readX, &readY, &readW, &readH, &pack);
+   if (!_mesa_clip_readpixels(ctx, &readX, &readY, &readW, &readH, &pack)) {
+      /* The source region is completely out of bounds.  Do nothing.
+       * The GL spec says "Results of copies from outside the window,
+       * or from regions of the window that are not exposed, are
+       * hardware dependent and undefined."
+       */
+      return;
+   }
+
    readW = MAX2(0, readW);
    readH = MAX2(0, readH);