Home
last modified time | relevance | path

Searched refs:animator (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/modules/skottie/src/animator/
DAnimator.cpp20 for (const auto& animator : fAnimators) { in onSeek() local
21 changed |= animator->seek(t); in onSeek()
93 sk_sp<KeyframeAnimator> animator; in bindImpl() local
96 animator = builder.makeFromKeyframes(abuilder, *jkfs); in bindImpl()
99 if (!animator) { in bindImpl()
104 if (animator->isConstant()) { in bindImpl()
107 animator->seek(0); in bindImpl()
109 fAnimators.push_back(std::move(animator)); in bindImpl()
/third_party/skia/modules/skottie/
Dskottie.gni33 "$_src/animator/Animator.cpp",
34 "$_src/animator/Animator.h",
35 "$_src/animator/KeyframeAnimator.cpp",
36 "$_src/animator/KeyframeAnimator.h",
37 "$_src/animator/ScalarKeyframeAnimator.cpp",
38 "$_src/animator/ShapeKeyframeAnimator.cpp",
39 "$_src/animator/TextKeyframeAnimator.cpp",
40 "$_src/animator/Vec2KeyframeAnimator.cpp",
41 "$_src/animator/VectorKeyframeAnimator.cpp",
42 "$_src/animator/VectorKeyframeAnimator.h",
/third_party/skia/tools/skottie_ios_app/
DBUILD.gn37 "../../resources/skottie/skottie-text-animator-1.json",
38 "../../resources/skottie/skottie-text-animator-2.json",
39 "../../resources/skottie/skottie-text-animator-3.json",
40 "../../resources/skottie/skottie-text-animator-4.json",
41 "../../resources/skottie/skottie-text-animator-5.json",
42 "../../resources/skottie/skottie-text-animator-8.json",
/third_party/skia/modules/skottie/src/effects/
DMotionBlurEffect.cpp37 sk_sp<MotionBlurEffect> MotionBlurEffect::Make(sk_sp<Animator> animator, in Make() argument
51 return sk_sp<MotionBlurEffect>(new MotionBlurEffect(std::move(animator), in Make()
57 MotionBlurEffect::MotionBlurEffect(sk_sp<Animator> animator, in MotionBlurEffect() argument
61 , fAnimator(std::move(animator))
DMotionBlurEffect.h21 static sk_sp<MotionBlurEffect> Make(sk_sp<Animator> animator,
41 MotionBlurEffect(sk_sp<Animator> animator,
/third_party/skia/modules/skottie/src/text/
DTextAdapter.cpp236 if (auto animator = TextAnimator::Make(janimator, abuilder, adapter.get())) { in Make() local
237 adapter->fHasBlurAnimator |= animator->hasBlur(); in Make()
238 adapter->fRequiresAnchorPoint |= animator->requiresAnchorPoint(); in Make()
240 adapter->fAnimators.push_back(std::move(animator)); in Make()
560 for (const auto& animator : fAnimators) { in onSync() local
561 animator->modulateProps(fMaps, buf); in onSync()
/third_party/skia/
Dpublic.bzl884 "modules/skottie/src/animator/*.cpp",
885 "modules/skottie/src/animator/*.h",