Home | History | Annotate | Download | only in animator

Lines Matching full:time

170 void SkActive::create(SkDrawable* drawable, SkMSec time) {
171 fApply.fLastTime = time;
183 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
186 interpolator.timeToValues(time, values.get());
187 fApply.applyValues(index, values.get(), count, animate->getValuesType(), time);
195 SkMSec time = 0;
201 fApply.fLastTime = time;
208 if (state.fBegin > time)
210 if (time > state.fBegin + state.fDuration)
221 fApply.applyValues(index, values.begin(), count, animate->getValuesType(), time);
224 interpolator.timeToValues(time, values.get());
225 fApply.applyValues(index, values.get(), count, animate->getValuesType(), time);
232 time += SK_MSec1;
233 } while (time <= final);
420 SkMSec time = fMaker.getAppTime();
421 debugOut.appendS32(time - fMaker.fDebugTimeBase);
495 SkMSec SkActive::SkState::getRelativeTime(SkMSec time) {
496 SkMSec result = time;
501 if (SkMSec_LT(fDuration, time))
504 result = fDuration - time;