Lines Matching defs:iter
170 void lineTo(const SkPoint&, const SkPath::Iter* iter = nullptr);
434 static bool has_valid_tangent(const SkPath::Iter* iter) {
435 SkPath::Iter copy = *iter;
466 void SkPathStroker::lineTo(const SkPoint& currPt, const SkPath::Iter* iter) {
471 if (teenyLine && (fJoinCompleted || (iter && has_valid_tangent(iter)))) {
1453 SkPath::Iter iter(src, false);
1458 switch (iter.next(pts)) {
1463 stroker.lineTo(pts[1], &iter);
1471 stroker.conicTo(pts[1], pts[2], iter.conicWeight());