HomeSort by relevance Sort by last modified time
    Searched refs:fDashInfo (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
GrStyle.h 97 fDashInfo = that.fDashInfo;
103 fDashInfo.reset();
125 bool isDashed() const { return SkPathEffect::kDash_DashType == fDashInfo.fType; }
128 return fDashInfo.fPhase;
132 return fDashInfo.fIntervals.count();
136 return fDashInfo.fIntervals.get();
211 DashInfo fDashInfo;
GrStyle.cpp 108 SkASSERT(SkPathEffect::kNone_DashType == fDashInfo.fType);
109 SkASSERT(0 == fDashInfo.fIntervals.count());
117 fDashInfo.fType = SkPathEffect::kDash_DashType;
118 fDashInfo.fIntervals.reset(info.fCount);
119 fDashInfo.fPhase = info.fPhase;
120 info.fIntervals = fDashInfo.fIntervals.get();
133 if (SkPathEffect::kDash_DashType == fDashInfo.fType) {
137 SkScalar phase = fDashInfo.fPhase;
138 const SkScalar* intervals = fDashInfo.fIntervals.get();
139 int intervalCnt = fDashInfo.fIntervals.count()
    [all...]

Completed in 77 milliseconds