Lines Matching refs:destY
606 GLint *destX, GLint *destY, in _mesa_clip_drawpixels() argument
634 if (*destY < buffer->_Ymin) { in _mesa_clip_drawpixels()
635 unpack->SkipRows += (buffer->_Ymin - *destY); in _mesa_clip_drawpixels()
636 *height -= (buffer->_Ymin - *destY); in _mesa_clip_drawpixels()
637 *destY = buffer->_Ymin; in _mesa_clip_drawpixels()
640 if (*destY + *height > buffer->_Ymax) in _mesa_clip_drawpixels()
641 *height -= (*destY + *height - buffer->_Ymax); in _mesa_clip_drawpixels()
645 if (*destY > buffer->_Ymax) { in _mesa_clip_drawpixels()
646 unpack->SkipRows += (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
647 *height -= (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
648 *destY = buffer->_Ymax; in _mesa_clip_drawpixels()
651 if (*destY - *height < buffer->_Ymin) in _mesa_clip_drawpixels()
652 *height -= (buffer->_Ymin - (*destY - *height)); in _mesa_clip_drawpixels()
654 (*destY)--; in _mesa_clip_drawpixels()
739 GLint *destX, GLint *destY, in _mesa_clip_copytexsubimage() argument
749 *destY = *destY + *srcY - srcY0; in _mesa_clip_copytexsubimage()