Searched refs:currPt (Results 1 – 2 of 2) sorted by relevance
/external/skia/src/core/ |
D | SkStroke.cpp | 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() [all …]
|
D | SkPath.cpp | 2160 SkPoint currPt = *points++; in BySign() local 2161 SkPoint firstPt = currPt; in BySign() 2168 SkVector vec = *points - currPt; in BySign() 2184 currPt = *points++; in BySign()
|