Lines Matching refs:maxX
196 SkScalar maxX = pts[1].fX; in cull_path() local
199 SkTSwap(minX, maxX); in cull_path()
202 SkASSERT(minX <= maxX); in cull_path()
203 if (maxX < bounds.fLeft || minX > bounds.fRight) { in cull_path()
215 if (maxX > bounds.fRight) { in cull_path()
216 maxX = bounds.fRight + SkScalarMod(maxX - bounds.fRight, in cull_path()
220 SkASSERT(maxX >= minX); in cull_path()
222 SkTSwap(minX, maxX); in cull_path()
225 pts[1].fX = maxX; in cull_path()
230 if (minX == maxX) { in cull_path()
231 pts[1].fX += maxX * FLT_EPSILON * 32; // 16 instead of 32 does not draw; length stays zero in cull_path()