Home | History | Annotate | Download | only in animator

Lines Matching refs:fPath

16 SkPathPart::SkPathPart() : fPath(NULL) {
20 fPath->dirty();
24 return fPath;
31 fPath = (SkDrawPath*) parent;
51 fPath->fPath.moveTo(x, y);
68 fPath->fPath.rMoveTo(x, y);
89 fPath->fPath.lineTo(x, y);
106 fPath->fPath.rLineTo(x, y);
129 fPath->fPath.quadTo(x1, y1, x2, y2);
146 fPath->fPath.rQuadTo(x1, y1, x2, y2);
171 fPath->fPath.cubicTo(x1, y1, x2, y2, x3, y3);
188 fPath->fPath.rCubicTo(x1, y1, x2, y2, x3, y3);
195 fPath->fPath.close();
233 fPath->fPath.addRect(fRect, (SkPath::Direction) direction);
249 fPath->fPath.addOval(fRect, (SkPath::Direction) direction);
271 fPath->fPath.addCircle(x, y, radius, (SkPath::Direction) direction);
292 fPath->fPath.addRoundRect(fRect, rx, ry, (SkPath::Direction) direction);
314 fPath->fPath.addPath(path->fPath, matrix->getMatrix());
316 fPath->fPath.addPath(path->fPath);