Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DSkiaInterpolator.cpp105 fElemCount = SkToU8(elemCount); in reset()
246 float* dst = &fValues[fElemCount * index]; in setKeyFrame()
247 memcpy(dst, values, fElemCount * sizeof(float)); in setKeyFrame()
258 const float* nextSrc = &fValues[index * fElemCount]; in timeToValues()
261 memcpy(values, nextSrc, fElemCount * sizeof(float)); in timeToValues()
265 const float* prevSrc = nextSrc - fElemCount; in timeToValues()
267 for (int i = fElemCount - 1; i >= 0; --i) { in timeToValues()
DSkiaInterpolator.h69 uint8_t fElemCount; variable