diff options
Diffstat (limited to 'gfx/skia/skia/src/animator/SkADrawable.cpp')
-rw-r--r-- | gfx/skia/skia/src/animator/SkADrawable.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gfx/skia/skia/src/animator/SkADrawable.cpp b/gfx/skia/skia/src/animator/SkADrawable.cpp new file mode 100644 index 000000000..9ac4095e1 --- /dev/null +++ b/gfx/skia/skia/src/animator/SkADrawable.cpp @@ -0,0 +1,24 @@ + +/* + * Copyright 2006 The Android Open Source Project + * + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. + */ + + +#include "SkADrawable.h" + +bool SkADrawable::doEvent(SkDisplayEvent::Kind , SkEventState* ) { + return false; +} + +bool SkADrawable::isDrawable() const { + return true; +} + +void SkADrawable::initialize() { +} + +void SkADrawable::setSteps(int steps) { +} |