Home | History | Annotate | Download | only in animator

Lines Matching refs:fPath

28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
33 fPath.getLastPt(&c);
44 fPath.quadTo(mid,q);
50 fPath.quadTo(mid,p2);
114 fPath.reset();
145 fPath.moveTo(points[0]);
151 fPath.lineTo(points[0]);
157 fPath.lineTo(x, c.fY);
164 fPath.lineTo(c.fX, y);
182 quadApprox(fPath, points[0], points[1], points[2]);
184 fPath.cubicTo(points[0], points[1], points[2]);
202 fPath.quadTo(points[0], points[1]);
207 fPath.close();
209 if (fPath.isEmpty() && (f.fX != 0 || f.fY != 0)) {
211 fPath.moveTo(c);
212 fPath.lineTo(f);
213 fPath.close();
222 fPath.moveTo(args[0].fX, args[0].fY);
223 fPath.lineTo(args[1].fX, args[1].fY);