Lines Matching refs:destY
482 GLint *destX, GLint *destY, in _mesa_clip_drawpixels() argument
510 if (*destY < buffer->_Ymin) { in _mesa_clip_drawpixels()
511 unpack->SkipRows += (buffer->_Ymin - *destY); in _mesa_clip_drawpixels()
512 *height -= (buffer->_Ymin - *destY); in _mesa_clip_drawpixels()
513 *destY = buffer->_Ymin; in _mesa_clip_drawpixels()
516 if (*destY + *height > buffer->_Ymax) in _mesa_clip_drawpixels()
517 *height -= (*destY + *height - buffer->_Ymax); in _mesa_clip_drawpixels()
521 if (*destY > buffer->_Ymax) { in _mesa_clip_drawpixels()
522 unpack->SkipRows += (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
523 *height -= (*destY - buffer->_Ymax); in _mesa_clip_drawpixels()
524 *destY = buffer->_Ymax; in _mesa_clip_drawpixels()
527 if (*destY - *height < buffer->_Ymin) in _mesa_clip_drawpixels()
528 *height -= (buffer->_Ymin - (*destY - *height)); in _mesa_clip_drawpixels()
530 (*destY)--; in _mesa_clip_drawpixels()
615 GLint *destX, GLint *destY, in _mesa_clip_copytexsubimage() argument
625 *destY = *destY + *srcY - srcY0; in _mesa_clip_copytexsubimage()