diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/swrast/s_copypix.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/mesa/swrast/s_copypix.c b/src/mesa/swrast/s_copypix.c index 1a17b75c70..ec04143214 100644 --- a/src/mesa/swrast/s_copypix.c +++ b/src/mesa/swrast/s_copypix.c @@ -860,7 +860,7 @@ fast_copy_pixels(GLcontext *ctx,     /* clipping not supported */     if (srcX < 0 || srcX + width > srcFb->Width || -       srcY < 0 || srcY + height > srcFb->Width || +       srcY < 0 || srcY + height > srcFb->Height ||         dstX < dstFb->_Xmin || dstX + width > dstFb->_Xmax ||         dstY < dstFb->_Ymin || dstY + height > dstFb->_Ymax) {        return GL_FALSE; | 
