OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:nextSrc
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/src/animator/
SkOperandIterpolator.cpp
67
const SkOperand*
nextSrc
= &fValues[index * fElemCount];
70
memcpy(values,
nextSrc
, fElemCount * sizeof(SkScalar));
75
const SkOperand* prevSrc =
nextSrc
- fElemCount;
79
values[i].fScalar = SkScalarInterp(prevSrc[i].fScalar,
nextSrc
[i].fScalar, T);
83
int32_t b =
nextSrc
[i].fS32;
/external/chromium_org/third_party/skia/src/utils/
SkInterpolator.cpp
189
const SkScalar*
nextSrc
= &fValues[index * fElemCount];
192
memcpy(values,
nextSrc
, fElemCount * sizeof(SkScalar));
196
const SkScalar* prevSrc =
nextSrc
- fElemCount;
199
values[i] = SkScalarInterp(prevSrc[i],
nextSrc
[i], T);
Completed in 429 milliseconds