Home | History | Annotate | Download | only in core

Lines Matching refs:Iter

129     void lineTo(const SkPoint&, const SkPath::Iter* iter = nullptr);
376 static bool has_valid_tangent(const SkPath::Iter* iter) {
377 SkPath::Iter copy = *iter;
408 void SkPathStroker::lineTo(const SkPoint& currPt, const SkPath::Iter* iter) {
413 if (fPrevPt == currPt && (fJoinCompleted || (iter && has_valid_tangent(iter)))) {
1374 SkPath::Iter iter(src, false);
1379 switch (iter.next(pts, false)) {
1384 stroker.lineTo(pts[1], &iter);
1392 stroker.conicTo(pts[1], pts[2], iter.conicWeight());