Home
last modified time | relevance | path

Searched refs:fDashInfo (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/gpu/
DGrStyle.cpp108 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()
133 if (SkPathEffect::kDash_DashType == fDashInfo.fType) { in applyPathEffect()
137 SkScalar phase = fDashInfo.fPhase; in applyPathEffect()
138 const SkScalar* intervals = fDashInfo.fIntervals.get(); in applyPathEffect()
139 int intervalCnt = fDashInfo.fIntervals.count(); in applyPathEffect()
DGrStyle.h97 fDashInfo = that.fDashInfo;
103 fDashInfo.reset(); in resetToInitStyle()
125 bool isDashed() const { return SkPathEffect::kDash_DashType == fDashInfo.fType; } in isDashed()
128 return fDashInfo.fPhase; in dashPhase()
132 return fDashInfo.fIntervals.count(); in dashIntervalCnt()
136 return fDashInfo.fIntervals.get(); in dashIntervals()
211 DashInfo fDashInfo; variable