Lines Matching refs:currPt
282 void line_to(const SkPoint& currPt, const SkVector& normal);
287 bool SkPathStroker::preJoinTo(const SkPoint& currPt, SkVector* normal, in preJoinTo() argument
294 if (!set_normal_unitnormal(fPrevPt, currPt, fResScale, fRadius, normal, unitNormal)) { in preJoinTo()
320 void SkPathStroker::postJoinTo(const SkPoint& currPt, const SkVector& normal, in postJoinTo() argument
323 fPrevPt = currPt; in postJoinTo()
429 void SkPathStroker::line_to(const SkPoint& currPt, const SkVector& normal) { in line_to() argument
430 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY); in line_to()
431 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY); in line_to()
466 void SkPathStroker::lineTo(const SkPoint& currPt, const SkPath::Iter* iter) { in lineTo() argument
467 …bool teenyLine = SkPointPriv::EqualsWithinTolerance(fPrevPt, currPt, SK_ScalarNearlyZero * fInvRes… in lineTo()
476 if (!this->preJoinTo(currPt, &normal, &unitNormal, true)) { in lineTo()
479 this->line_to(currPt, normal); in lineTo()
480 this->postJoinTo(currPt, normal, unitNormal); in lineTo()