Lines Matching refs:fInterp
49 SkInterpolator* fInterp; member in HTDrawable
57 fInterp = nullptr; in HTDrawable()
64 delete fInterp; in spawnAnimation()
65 fInterp = new SkInterpolator(5, 3); in spawnAnimation()
68 fInterp->setKeyFrame(0, now, values); in spawnAnimation()
70 fInterp->setKeyFrame(1, now + 1000, values); in spawnAnimation()
72 fInterp->setKeyFrame(2, now + 2000, values); in spawnAnimation()
74 fInterp->setMirror(true); in spawnAnimation()
75 fInterp->setRepeatCount(3); in spawnAnimation()
92 if (fInterp) { in onDraw()
94 SkInterpolator::Result res = fInterp->timeToValues(fTime, values); in onDraw()
102 delete fInterp; in onDraw()
103 fInterp = nullptr; in onDraw()