Searched refs:animatedValue (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DPropertyValuesHolder.cpp50 float animatedValue; local
52 animatedValue = getValueFromData(fraction);
54 animatedValue = mStartValue * (1 - fraction) + mEndValue * fraction;
56 mGroup->mutateProperties()->setPropertyValue(mPropertyId, animatedValue);
74 SkColor animatedValue = interpolateColors(mStartValue, mEndValue, fraction); local
75 mFullPath->mutateProperties()->setColorPropertyValue(mPropertyId, animatedValue);
79 float animatedValue; local
81 animatedValue = getValueFromData(fraction);
83 animatedValue = mStartValue * (1 - fraction) + mEndValue * fraction;
85 mFullPath->mutateProperties()->setPropertyValue(mPropertyId, animatedValue);
94 float animatedValue = mStartValue * (1 - fraction) + mEndValue * fraction; local
[all...]

Completed in 45 milliseconds