/third_party/skia/modules/skottie/src/animator/ |
H A D | Animator.h | 29 class Animator : public SkRefCnt { class 35 Animator() = default; 40 Animator(const Animator&) = delete; 41 Animator& operator=(const Animator&) = delete; 44 class AnimatablePropertyContainer : public Animator { 77 std::vector<sk_sp<Animator>> fAnimators;
|
H A D | Animator.cpp | 8 #include "modules/skottie/src/animator/Animator.h" 16 Animator::StateChanged AnimatablePropertyContainer::onSeek(float t) { in onSeek() 67 sk_sp<Animator> expression_animator = builder.makeFromExpression( in bindImpl()
|
H A D | KeyframeAnimator.h | 15 #include "modules/skottie/src/animator/Animator.h" 62 class KeyframeAnimator : public Animator { 118 virtual sk_sp<Animator> makeFromExpression(ExpressionManager&, const char*) = 0;
|
H A D | TextKeyframeAnimator.cpp | 43 class TextExpressionAnimator final : public Animator { 87 sk_sp<Animator> makeFromExpression(ExpressionManager& em, const char* expr) override {
|
H A D | ScalarKeyframeAnimator.cpp | 10 #include "modules/skottie/src/animator/Animator.h" 43 class ScalarExpressionAnimator final : public Animator { 81 sk_sp<Animator> makeFromExpression(ExpressionManager& em, const char* expr) override {
|
H A D | VectorKeyframeAnimator.h | 27 sk_sp<Animator> makeFromExpression(ExpressionManager&, const char*) override;
|
H A D | VectorKeyframeAnimator.cpp | 15 #include "modules/skottie/src/animator/Animator.h" 145 class VectorExpressionAnimator final : public Animator { 219 sk_sp<Animator> VectorAnimatorBuilder::makeFromExpression(ExpressionManager& em, const char* expr) { in makeFromExpression()
|
H A D | Vec2KeyframeAnimator.cpp | 12 #include "modules/skottie/src/animator/Animator.h" 104 class Vec2ExpressionAnimator final : public Animator { 152 sk_sp<Animator> makeFromExpression(ExpressionManager& em, const char* expr) override {
|
/third_party/skia/modules/skottie/src/effects/ |
H A D | MotionBlurEffect.h | 17 class Animator; 21 static sk_sp<MotionBlurEffect> Make(sk_sp<Animator> animator, 41 MotionBlurEffect(sk_sp<Animator> animator, 45 const sk_sp<Animator> fAnimator;
|
H A D | MotionBlurEffect.cpp | 14 #include "modules/skottie/src/animator/Animator.h" 37 sk_sp<MotionBlurEffect> MotionBlurEffect::Make(sk_sp<Animator> animator, in Make() 57 MotionBlurEffect::MotionBlurEffect(sk_sp<Animator> animator, in MotionBlurEffect()
|
/third_party/skia/tools/viewer/ |
H A D | SlideDir.cpp | 28 class SlideDir::Animator : public SkRefCnt { class in SlideDir 30 Animator(const Animator&) = delete; 31 Animator& operator=(const Animator&) = delete; 36 Animator() = default; 63 sk_sp<SlideDir::Animator> makeForwardingAnimator() { in makeForwardingAnimator() 64 // Trivial sksg::Animator -> skottie::Animation tick adapter in makeForwardingAnimator() 65 class ForwardingAnimator final : public SlideDir::Animator { in makeForwardingAnimator() 124 class SlideDir::FocusController final : public Animator { [all...] |
H A D | SlideDir.h | 32 class Animator; 60 std::vector<sk_sp<Animator>> fSceneAnimators;
|
/third_party/skia/modules/skottie/include/ |
H A D | Skottie.h | 38 namespace internal { class Animator; } 273 std::vector<sk_sp<internal::Animator>>&&, 278 const std::vector<sk_sp<internal::Animator>> fAnimators;
|
/third_party/skia/platform_tools/android/apps/skottie/skottielib/src/main/java/org/skia/skottie/ |
H A D | SkottieView.java | 10 import android.animation.Animator; 33 // Repeat follows Animator API, infinite is represented by -1 (see Animator.DURATION_INFINITE) 167 public void removeListener(Animator.AnimatorListener listener) { in removeListener() 171 public void addListener(Animator.AnimatorListener listener) { in addListener()
|
H A D | SkottieAnimation.java | 3 import android.animation.Animator; 24 public class SkottieAnimation extends Animator implements Choreographer.FrameCallback, 236 public Animator setDuration(long duration) { in setDuration()
|
/third_party/skia/modules/skottie/src/layers/ |
H A D | PrecompLayer.cpp | 14 #include "modules/skottie/src/animator/Animator.h" 46 class CompTimeMapper final : public Animator { 140 class AnimatorAdapter final : public Animator { in attachExternalPrecompLayer()
|
H A D | AudioLayer.cpp | 12 #include "modules/skottie/src/animator/Animator.h" 19 class ForwardingPlaybackController final : public Animator { 80 // no render node, playback is controlled from the Animator tree. in attachAudioLayer()
|
H A D | FootageLayer.cpp | 30 class FootageAnimator final : public Animator {
|
/third_party/skia/modules/skottie/src/ |
H A D | Layer.cpp | 243 class LayerController final : public Animator { 285 class MotionBlurController final : public Animator { 523 sk_sp<Animator> controller = sk_make_sp<LayerController>(ascope.release(), in buildRenderTree()
|
H A D | SkottiePriv.h | 19 #include "modules/skottie/src/animator/Animator.h" 50 using AnimatorScope = std::vector<sk_sp<Animator>>;
|
H A D | Skottie.cpp | 459 std::vector<sk_sp<internal::Animator>>&& animators, in Animation()
|
/third_party/skia/demos.skia.org/demos/path_performance/ |
H A D | shared.js | 10 // Animator handles calling and stopping requestAnimationFrame and keeping track of framerate. 11 class Animator {
|
H A D | main.js | 30 const svgAnimator = new Animator();
|