Lines Matching defs:path
21 // Paths in desk_tigersvg.skp that take the "inner triangulation" path through the tessellator.
38 SkPath& path = fPaths.push_back();
44 path.moveTo(pts[ptsIdx]);
48 path.lineTo(pts[ptsIdx]);
52 path.quadTo(pts[ptsIdx], pts[ptsIdx + 1]);
56 path.cubicTo(pts[ptsIdx], pts[ptsIdx + 1], pts[ptsIdx + 2]);
60 path.close();
99 for (const SkPath& path : fPaths) {
101 GrTriangulator::PathToTriangles(path, kTigerTolerance, SkRect::MakeEmpty(), this,
115 for (const SkPath& path : fPaths) {
117 GrInnerFanTriangulator(path, &fArena).pathToTriangles(this, &breadcrumbList, &isLinear);
132 for (const SkPath& path : fPaths) {
133 int maxInnerTriangles = path.countVerbs() - 1;
136 data, 3/*perTriangleVertexAdvance*/, path) * 3;