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

  /external/chromium_org/third_party/skia/samplecode/
SamplePathUtils.cpp 45 SkScalar fPhase;
51 fPhase = 0.0f; // to animate the dashed path
68 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, fPhase));
96 fPhase += .01f;
  /external/skia/samplecode/
SamplePathUtils.cpp 45 SkScalar fPhase;
51 fPhase = 0.0f; // to animate the dashed path
68 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, fPhase));
96 fPhase += .01f;
  /external/chromium_org/third_party/skia/src/effects/
SkDashPathEffect.cpp 28 &fInitialDashIndex, &fIntervalLength, &fPhase);
233 info->fPhase = fPhase;
244 buffer.writeScalar(fPhase);
260 fPhase = buffer.readScalar();
273 fPhase = 0;
276 fPhase += fIntervals[i];
278 fPhase += fIntervals[fInitialDashIndex] - fInitialDashLength;
281 // set the internal data members, fPhase should have been between 0 and intervalLength
283 SkDashPath::CalcDashParameters(fPhase, fIntervals, fCount, &fInitialDashLength
    [all...]
  /external/skia/src/effects/
SkDashPathEffect.cpp 28 &fInitialDashIndex, &fIntervalLength, &fPhase);
233 info->fPhase = fPhase;
244 buffer.writeScalar(fPhase);
260 fPhase = buffer.readScalar();
273 fPhase = 0;
276 fPhase += fIntervals[i];
278 fPhase += fIntervals[fInitialDashIndex] - fInitialDashLength;
281 // set the internal data members, fPhase should have been between 0 and intervalLength
283 SkDashPath::CalcDashParameters(fPhase, fIntervals, fCount, &fInitialDashLength
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkDashPathEffect.h 66 SkScalar fPhase;
  /external/skia/include/effects/
SkDashPathEffect.h 66 SkScalar fPhase;
  /external/chromium_org/third_party/skia/tests/
AsADashTest.cpp 43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
  /external/skia/tests/
AsADashTest.cpp 43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
  /external/chromium_org/third_party/skia/include/core/
SkPathEffect.h 123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
128 SkScalar fPhase; //!< Offset into the dashed interval pattern
  /external/skia/include/core/
SkPathEffect.h 123 DashInfo() : fIntervals(NULL), fCount(0), fPhase(0) {}
128 SkScalar fPhase; //!< Offset into the dashed interval pattern
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrDashingEffect.cpp 113 SkASSERT(info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
114 if (info.fPhase >= info.fIntervals[0] && info.fPhase != 0) {
116 return srcIntervalLen - info.fPhase;
181 SkASSERT(info.fPhase >= 0 && info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
183 SkScalar srcPhase = info.fPhase;
339 devInfo.fPhase = devPhase;
617 info.fPhase = random->nextRangeScalar(0, info.fIntervals[0] + info.fIntervals[1]);
  /external/skia/src/gpu/effects/
GrDashingEffect.cpp 113 SkASSERT(info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
114 if (info.fPhase >= info.fIntervals[0] && info.fPhase != 0) {
116 return srcIntervalLen - info.fPhase;
181 SkASSERT(info.fPhase >= 0 && info.fPhase < info.fIntervals[0] + info.fIntervals[1]);
183 SkScalar srcPhase = info.fPhase;
339 devInfo.fPhase = devPhase;
617 info.fPhase = random->nextRangeScalar(0, info.fIntervals[0] + info.fIntervals[1]);
  /external/chromium_org/third_party/skia/src/utils/
SkDashPath.cpp 324 CalcDashParameters(info.fPhase, info.fIntervals, info.fCount,
SkLua.cpp 250 setfield_scalar(fL, "phase", info.fPhase);
    [all...]
  /external/skia/src/utils/
SkDashPath.cpp 324 CalcDashParameters(info.fPhase, info.fIntervals, info.fCount,
SkLua.cpp 250 setfield_scalar(fL, "phase", info.fPhase);
    [all...]

Completed in 484 milliseconds