Home
last modified time | relevance | path

Searched refs:nextSrc (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/animator/
DSkOperandIterpolator.cpp65 const SkOperand* nextSrc = &fValues[index * fElemCount]; in timeToValues() local
68 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
73 const SkOperand* prevSrc = nextSrc - fElemCount; in timeToValues()
77 values[i].fScalar = SkScalarInterp(prevSrc[i].fScalar, nextSrc[i].fScalar, T); in timeToValues()
81 int32_t b = nextSrc[i].fS32; in timeToValues()
/external/skia/src/utils/
DSkInterpolator.cpp188 const SkScalar* nextSrc = &fValues[index * fElemCount]; in timeToValues() local
191 memcpy(values, nextSrc, fElemCount * sizeof(SkScalar)); in timeToValues()
195 const SkScalar* prevSrc = nextSrc - fElemCount; in timeToValues()
198 values[i] = SkScalarInterp(prevSrc[i], nextSrc[i], T); in timeToValues()