diff options
Diffstat (limited to 'gm/gm.cpp')
-rw-r--r-- | gm/gm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,8 +51,8 @@ void GM::setBGColor(SkColor color) { fBGColor = color; } -bool GM::animatePulse(SkMSec curr, SkMSec prev) { - return this->onAnimatePulse(curr, prev); +bool GM::animate(const SkAnimTimer& timer) { + return this->onAnimate(timer); } ///////////////////////////////////////////////////////////////////////////////////////////// |