Lines Matching refs:dstX1
780 GLint *dstX0, GLint *dstX1, in clip_right_or_top() argument
785 if (*dstX1 > maxValue) { in clip_right_or_top()
788 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top()
791 *dstX1 = maxValue; in clip_right_or_top()
797 ASSERT(*dstX1 < maxValue); /* X1 should be inside right edge */ in clip_right_or_top()
798 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top()
813 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument
820 ASSERT(*dstX1 > minValue); /* X1 should be inside left edge */ in clip_left_or_bottom()
821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom()
828 else if (*dstX1 < minValue) { in clip_left_or_bottom()
831 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_left_or_bottom()
834 *dstX1 = minValue; in clip_left_or_bottom()
857 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1) in _mesa_clip_blit() argument
878 if (*dstX0 == *dstX1) in _mesa_clip_blit()
880 if (*dstX0 <= dstXmin && *dstX1 <= dstXmin) in _mesa_clip_blit()
882 if (*dstX0 >= dstXmax && *dstX1 >= dstXmax) in _mesa_clip_blit()
909 clip_right_or_top(srcX0, srcX1, dstX0, dstX1, dstXmax); in _mesa_clip_blit()
911 clip_left_or_bottom(srcX0, srcX1, dstX0, dstX1, dstXmin); in _mesa_clip_blit()
917 clip_right_or_top(dstX0, dstX1, srcX0, srcX1, srcXmax); in _mesa_clip_blit()
919 clip_left_or_bottom(dstX0, dstX1, srcX0, srcX1, srcXmin); in _mesa_clip_blit()
931 ASSERT(*dstX1 >= dstXmin); in _mesa_clip_blit()
932 ASSERT(*dstX1 <= dstXmax); in _mesa_clip_blit()