Home | History | Annotate | Download | only in Intersection

Lines Matching refs:fPath

72 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
77 fPath.getLastPt(&c);
88 fPath.quadTo(mid,q);
94 fPath.quadTo(mid,p2);
208 SkPath fPath;
240 fPath.moveTo(points[0]);
246 fPath.lineTo(points[0]);
252 fPath.lineTo(x, c.fY);
259 fPath.lineTo(c.fX, y);
277 quadApprox(fPath, points[0], points[1], points[2]);
279 fPath.cubicTo(points[0], points[1], points[2]);
297 fPath.quadTo(points[0], points[1]);
302 fPath.close();
304 if (fPath.isEmpty() && (f.fX != 0 || f.fY != 0)) {
306 fPath.moveTo(c);
307 fPath.lineTo(f);
308 fPath.close();
317 fPath.moveTo(args[0].fX, args[0].fY);
318 fPath.lineTo(args[1].fX, args[1].fY);
329 showPath(fPath);