Searched refs:fDashInfo (Results 1 – 2 of 2) sorted by relevance
108 SkASSERT(SkPathEffect::kNone_DashType == fDashInfo.fType); in initPathEffect()109 SkASSERT(0 == fDashInfo.fIntervals.count()); in initPathEffect()117 fDashInfo.fType = SkPathEffect::kDash_DashType; in initPathEffect()118 fDashInfo.fIntervals.reset(info.fCount); in initPathEffect()119 fDashInfo.fPhase = info.fPhase; in initPathEffect()120 info.fIntervals = fDashInfo.fIntervals.get(); in initPathEffect()137 if (SkPathEffect::kDash_DashType == fDashInfo.fType) { in applyPathEffect()142 SkScalar phase = fDashInfo.fPhase; in applyPathEffect()143 const SkScalar* intervals = fDashInfo.fIntervals.get(); in applyPathEffect()144 int intervalCnt = fDashInfo.fIntervals.count(); in applyPathEffect()
98 fDashInfo = that.fDashInfo;104 fDashInfo.reset(); in resetToInitStyle()126 bool isDashed() const { return SkPathEffect::kDash_DashType == fDashInfo.fType; } in isDashed()129 return fDashInfo.fPhase; in dashPhase()133 return fDashInfo.fIntervals.count(); in dashIntervalCnt()137 return fDashInfo.fIntervals.get(); in dashIntervals()214 DashInfo fDashInfo; variable