• Home
  • Raw
  • Download

Lines Matching refs:dstX1

806                   GLint *dstX0, GLint *dstX1,  in clip_right_or_top()  argument
811 if (*dstX1 > maxValue) { in clip_right_or_top()
814 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_right_or_top()
817 *dstX1 = maxValue; in clip_right_or_top()
823 assert(*dstX1 < maxValue); /* X1 should be inside right edge */ in clip_right_or_top()
824 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_right_or_top()
839 GLint *dstX0, GLint *dstX1, in clip_left_or_bottom() argument
846 assert(*dstX1 > minValue); /* X1 should be inside left edge */ in clip_left_or_bottom()
847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0); in clip_left_or_bottom()
854 else if (*dstX1 < minValue) { in clip_left_or_bottom()
857 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1); in clip_left_or_bottom()
860 *dstX1 = minValue; in clip_left_or_bottom()
885 GLint *dstX0, GLint *dstY0, GLint *dstX1, GLint *dstY1) in _mesa_clip_blit() argument
906 if (*dstX0 == *dstX1) in _mesa_clip_blit()
908 if (*dstX0 <= dstXmin && *dstX1 <= dstXmin) in _mesa_clip_blit()
910 if (*dstX0 >= dstXmax && *dstX1 >= dstXmax) in _mesa_clip_blit()
937 clip_right_or_top(srcX0, srcX1, dstX0, dstX1, dstXmax); in _mesa_clip_blit()
939 clip_left_or_bottom(srcX0, srcX1, dstX0, dstX1, dstXmin); in _mesa_clip_blit()
945 clip_right_or_top(dstX0, dstX1, srcX0, srcX1, srcXmax); in _mesa_clip_blit()
947 clip_left_or_bottom(dstX0, dstX1, srcX0, srcX1, srcXmin); in _mesa_clip_blit()
959 assert(*dstX1 >= dstXmin); in _mesa_clip_blit()
960 assert(*dstX1 <= dstXmax); in _mesa_clip_blit()