Searched refs:currPt (Results 1 – 1 of 1) sorted by relevance
/external/skia/src/core/ |
D | SkStroke.cpp | 103 void line_to(const SkPoint& currPt, const SkVector& normal); 116 void SkPathStroker::preJoinTo(const SkPoint& currPt, SkVector* normal, in preJoinTo() argument 123 SkAssertResult(set_normal_unitnormal(fPrevPt, currPt, fRadius, normal, in preJoinTo() 140 void SkPathStroker::postJoinTo(const SkPoint& currPt, const SkVector& normal, in postJoinTo() argument 142 fPrevPt = currPt; in postJoinTo() 210 void SkPathStroker::line_to(const SkPoint& currPt, const SkVector& normal) { in line_to() argument 211 fOuter.lineTo(currPt.fX + normal.fX, currPt.fY + normal.fY); in line_to() 212 fInner.lineTo(currPt.fX - normal.fX, currPt.fY - normal.fY); in line_to() 215 void SkPathStroker::lineTo(const SkPoint& currPt) { in lineTo() argument 216 if (SkPath::IsLineDegenerate(fPrevPt, currPt)) { in lineTo() [all …]
|