From: Eric Anholt Date: Thu, 18 Dec 2008 05:18:00 +0000 (-0800) Subject: intel: don't clip to scissor-clipped read framebuffer bounds in copypixels. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d091ebd4e41c88fe53db9d52842aaa20d23b995d;p=mesa.git intel: don't clip to scissor-clipped read framebuffer bounds in copypixels. --- diff --git a/src/mesa/drivers/dri/intel/intel_pixel_copy.c b/src/mesa/drivers/dri/intel/intel_pixel_copy.c index 61d1296c26c..1505af22864 100644 --- a/src/mesa/drivers/dri/intel/intel_pixel_copy.c +++ b/src/mesa/drivers/dri/intel/intel_pixel_copy.c @@ -308,8 +308,8 @@ do_blit_copypixels(GLcontext * ctx, /* Clip to source buffer. */ orig_srcx = srcx; orig_srcy = srcy; - if (!_mesa_clip_to_region(read_fb->_Xmin, read_fb->_Ymin, - read_fb->_Xmax, read_fb->_Ymax, + if (!_mesa_clip_to_region(0, 0, + read_fb->Width, read_fb->Height, &srcx, &srcy, &width, &height)) goto out; /* Adjust dst coords for our post-clipped source origin */