| Index: samplecode/SampleAnimBlur.cpp
|
| diff --git a/samplecode/SampleAnimBlur.cpp b/samplecode/SampleAnimBlur.cpp
|
| index 3c0be8376848909129bd29c1d2e6c8b6ffeec847..98a3560fe9e9f76ed012ca629642123b8ee5408a 100644
|
| --- a/samplecode/SampleAnimBlur.cpp
|
| +++ b/samplecode/SampleAnimBlur.cpp
|
| @@ -28,7 +28,7 @@ public:
|
|
|
| protected:
|
| // overrides from SkEventSink
|
| - bool onQuery(SkEvent* evt) SK_OVERRIDE {
|
| + bool onQuery(SkEvent* evt) override {
|
| if (SampleCode::TitleQ(*evt)) {
|
| SampleCode::TitleR(evt, "AnimBlur");
|
| return true;
|
| @@ -36,7 +36,7 @@ protected:
|
| return this->INHERITED::onQuery(evt);
|
| }
|
|
|
| - void onDrawContent(SkCanvas* canvas) SK_OVERRIDE {
|
| + void onDrawContent(SkCanvas* canvas) override {
|
| static const SkBlurStyle gStyles[] = {
|
| kNormal_SkBlurStyle,
|
| kInner_SkBlurStyle,
|
| @@ -59,7 +59,7 @@ protected:
|
| }
|
| }
|
|
|
| - bool onAnimate(const SkAnimTimer& timer) SK_OVERRIDE {
|
| + bool onAnimate(const SkAnimTimer& timer) override {
|
| fBlurSigma = get_anim_sin(timer.secs(), 100, 4, 5);
|
| fCircleRadius = 3 + get_anim_sin(timer.secs(), 150, 25, 3);
|
| return true;
|
|
|