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

  /external/skia/src/animator/
SkOperandIterpolator.cpp 65 const SkOperand* nextSrc = &fValues[index * fElemCount];
68 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar));
73 const SkOperand* prevSrc = nextSrc - fElemCount;
77 values[i].fScalar = SkScalarInterp(prevSrc[i].fScalar, nextSrc[i].fScalar, T);
81 int32_t b = nextSrc[i].fS32;
  /external/skia/src/utils/
SkInterpolator.cpp 188 const SkScalar* nextSrc = &fValues[index * fElemCount];
191 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar));
195 const SkScalar* prevSrc = nextSrc - fElemCount;
198 values[i] = SkScalarInterp(prevSrc[i], nextSrc[i], T);

Completed in 434 milliseconds