Searched refs:currPt (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/core/ |
D | SkStroke.cpp | 243 void line_to(const SkPoint& currPt, const SkVector& normal); 248 bool SkPathStroker::preJoinTo(const SkPoint& currPt, SkVector* normal, in preJoinTo() argument 255 if (!set_normal_unitnormal(fPrevPt, currPt, fResScale, fRadius, normal, unitNormal)) { in preJoinTo() 281 void SkPathStroker::postJoinTo(const SkPoint& currPt, const SkVector& normal, in postJoinTo() argument 284 fPrevPt = currPt; in postJoinTo() 385 void SkPathStroker::line_to(const SkPoint& currPt, const SkVector& normal) { in line_to() argument 386 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY); in line_to() 387 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY); in line_to() 422 void SkPathStroker::lineTo(const SkPoint& currPt, const SkPath::Iter* iter) { in lineTo() argument 423 bool teenyLine = fPrevPt.equalsWithinTolerance(currPt, SK_ScalarNearlyZero * fInvResScale); in lineTo() [all …]
|