Searched defs:fIntervals (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/effects/
H A DSkDashImpl.h36 SkScalar* fIntervals; member in class:SkDashImpl
/external/skia/include/core/
H A DSkPathEffect.h135 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
137 : fIntervals(intervals), fCount(count), fPhase(phase) {}
139 SkScalar* fIntervals; //!< Length of on/off intervals for dashed lines member in struct:SkPathEffect::DashInfo
/external/skia/src/gpu/
H A DGrTestUtils.h78 SkAutoTArray<SkScalar> fIntervals; member in class:GrTest::TestDashPathEffect
H A DGrStyle.h132 return fDashInfo.fIntervals.count();
136 return fDashInfo.fIntervals.get();
193 fIntervals.reset(that.fIntervals.count());
194 sk_careful_memcpy(fIntervals.get(), that.fIntervals.get(),
195 sizeof(SkScalar) * that.fIntervals.count());
200 fIntervals.reset(0);
204 SkAutoSTArray<4, SkScalar> fIntervals; member in struct:GrStyle::DashInfo
/external/skia/bench/
H A DDashBench.cpp35 SkTDArray<SkScalar> fIntervals; member in class:DashBench
43 fIntervals.append(count, intervals);
45 fIntervals[i] *= width;
74 paint.setPathEffect(SkDashPathEffect::Make(fIntervals.begin(), fIntervals.count(), 0));
/external/skia/src/gpu/ops/
H A DGrDashOp.cpp252 SkScalar fIntervals[2]; member in struct:final::LineData
274 geo.fIntervals[0],
275 geo.fIntervals[1],
342 memcpy(fIntervals, geo.fIntervals, sizeof(geo.fIntervals));
346 SkScalar fIntervals[2]; member in struct:final::DashDraw
431 if (draw.fPhase > 0 && draw.fPhase < draw.fIntervals[0]) {
435 startPts[1].fX = SkMinScalar(startPts[0].fX + draw.fIntervals[0] - draw.fPhase,
441 startAdj = draw.fIntervals[
[all...]

Completed in 260 milliseconds