From: Eric Anholt Date: Fri, 19 Dec 2008 02:31:25 +0000 (-0800) Subject: mesa: Clip copytexsubimage to read framebuffer bounds, not scissor region. X-Git-Tag: 062012170305~17671^2~407 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d01c44aacaeabe1dd187163f9e204f40401698bc;p=profile%2Fivi%2Fmesa.git mesa: Clip copytexsubimage to read framebuffer bounds, not scissor region. --- diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index 6b19fc8..c205b4b 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -5119,7 +5119,7 @@ _mesa_clip_copytexsubimage(const GLcontext *ctx, const struct gl_framebuffer *fb = ctx->ReadBuffer; const GLint srcX0 = *srcX, srcY0 = *srcY; - if (_mesa_clip_to_region(fb->_Xmin, fb->_Ymin, fb->_Xmax, fb->_Ymax, + if (_mesa_clip_to_region(0, 0, fb->Width, fb->Height, srcX, srcY, width, height)) { *destX = *destX + *srcX - srcX0; *destY = *destY + *srcY - srcY0;