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

/external/chromium_org/third_party/skia/src/views/
H A DSkProgressView.cpp19 fInterp = NULL;
25 delete fInterp;
46 if (fInterp)
47 delete fInterp;
48 fInterp = new SkInterpolator(1, 2);
50 fInterp->setKeyFrame(0, SkTime::GetMSecs(), &x, 0);
52 fInterp->setKeyFrame(1, SkTime::GetMSecs() + 333, &x);
66 if (fInterp)
69 if (fInterp->timeToValues(SkTime::GetMSecs(), &x) == SkInterpolator::kFreezeEnd_Result)
71 delete fInterp;
[all...]
/external/skia/src/views/
H A DSkProgressView.cpp19 fInterp = NULL;
25 delete fInterp;
46 if (fInterp)
47 delete fInterp;
48 fInterp = new SkInterpolator(1, 2);
50 fInterp->setKeyFrame(0, SkTime::GetMSecs(), &x, 0);
52 fInterp->setKeyFrame(1, SkTime::GetMSecs() + 333, &x);
66 if (fInterp)
69 if (fInterp->timeToValues(SkTime::GetMSecs(), &x) == SkInterpolator::kFreezeEnd_Result)
71 delete fInterp;
[all...]
/external/chromium_org/third_party/skia/samplecode/
H A DClockFaceView.cpp181 SkScalar fInterp; member in class:ClockFaceView
187 fInterp = 0;
243 apply_shader(&paint, SkScalarToFloat(fInterp));
249 fInterp += fDx;
250 if (fInterp > 1) {
251 fInterp = 1;
253 } else if (fInterp < 0) {
254 fInterp = 0;
H A DTransitionView.cpp31 TransitionView(SkView* prev, SkView* next, int direction) : fInterp(4, 2){
118 SkInterpolator::Result result = fInterp.timeToValues(SkTime::GetMSecs(), values);
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);
177 SkInterpolator fInterp; member in class:TransitionView
/external/skia/samplecode/
H A DClockFaceView.cpp166 SkScalar fInterp; member in class:ClockFaceView
172 fInterp = 0;
228 apply_shader(&paint, SkScalarToFloat(fInterp));
234 fInterp += fDx;
235 if (fInterp > 1) {
236 fInterp = 1;
238 } else if (fInterp < 0) {
239 fInterp = 0;
H A DTransitionView.cpp31 TransitionView(SkView* prev, SkView* next, int direction) : fInterp(4, 2){
118 SkInterpolator::Result result = fInterp.timeToValues(SkTime::GetMSecs(), values);
163 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
164 fInterp.setKeyFrame(1, SkTime::GetMSecs()+kDurationMS, fEnd, blend);
177 SkInterpolator fInterp; member in class:TransitionView
/external/chromium_org/third_party/skia/include/views/
H A DSkWidget.h268 SkInterpolator* fInterp; member in class:SkProgressView
/external/skia/include/views/
H A DSkWidget.h268 SkInterpolator* fInterp; member in class:SkProgressView

Completed in 213 milliseconds