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

/external/chromium_org/third_party/skia/include/effects/
H A DSkDashPathEffect.h64 SkScalar* fIntervals; member in class:SkDashPathEffect
/external/skia/include/effects/
H A DSkDashPathEffect.h64 SkScalar* fIntervals; member in class:SkDashPathEffect
/external/chromium_org/third_party/skia/src/gpu/
H A DGrStrokeInfo.h29 fIntervals.reset(src.dashCount());
30 memcpy(fIntervals.get(), src.fIntervals.get(), src.dashCount() * sizeof(SkScalar));
60 fDashInfo.fIntervals = NULL;
63 fIntervals.reset(fDashInfo.fCount);
64 fDashInfo.fIntervals = fIntervals.get();
96 SkAutoSTArray<2, SkScalar> fIntervals; member in class:GrStrokeInfo
/external/skia/src/gpu/
H A DGrStrokeInfo.h29 fIntervals.reset(src.dashCount());
30 memcpy(fIntervals.get(), src.fIntervals.get(), src.dashCount() * sizeof(SkScalar));
60 fDashInfo.fIntervals = NULL;
63 fIntervals.reset(fDashInfo.fCount);
64 fDashInfo.fIntervals = fIntervals.get();
96 SkAutoSTArray<2, SkScalar> fIntervals; member in class:GrStrokeInfo
/external/chromium_org/third_party/skia/include/core/
H A DSkPathEffect.h123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
125 SkScalar* fIntervals; //!< Length of on/off intervals for dashed lines member in struct:SkPathEffect::DashInfo
/external/skia/include/core/
H A DSkPathEffect.h123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
125 SkScalar* fIntervals; //!< Length of on/off intervals for dashed lines member in struct:SkPathEffect::DashInfo
/external/chromium_org/third_party/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::Create(fIntervals.begin(),
75 fIntervals.count(), 0))->unref();
/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::Create(fIntervals.begin(),
75 fIntervals.count(), 0))->unref();

Completed in 139 milliseconds