aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/skottie/SkottieAnimator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/skottie/SkottieAnimator.cpp')
-rw-r--r--experimental/skottie/SkottieAnimator.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/experimental/skottie/SkottieAnimator.cpp b/experimental/skottie/SkottieAnimator.cpp
index b50e8ac442..c5cea588eb 100644
--- a/experimental/skottie/SkottieAnimator.cpp
+++ b/experimental/skottie/SkottieAnimator.cpp
@@ -275,7 +275,7 @@ private:
template <typename T>
static inline bool BindPropertyImpl(const Json::Value& jprop,
- sksg::Scene::AnimatorList* animators,
+ sksg::AnimatorList* animators,
std::function<void(const T&)>&& apply,
const T* noop) {
if (!jprop.isObject())
@@ -318,7 +318,7 @@ static inline bool BindPropertyImpl(const Json::Value& jprop,
template <>
bool BindProperty(const Json::Value& jprop,
- sksg::Scene::AnimatorList* animators,
+ sksg::AnimatorList* animators,
std::function<void(const ScalarValue&)>&& apply,
const ScalarValue* noop) {
return BindPropertyImpl(jprop, animators, std::move(apply), noop);
@@ -326,7 +326,7 @@ bool BindProperty(const Json::Value& jprop,
template <>
bool BindProperty(const Json::Value& jprop,
- sksg::Scene::AnimatorList* animators,
+ sksg::AnimatorList* animators,
std::function<void(const VectorValue&)>&& apply,
const VectorValue* noop) {
return BindPropertyImpl(jprop, animators, std::move(apply), noop);
@@ -334,7 +334,7 @@ bool BindProperty(const Json::Value& jprop,
template <>
bool BindProperty(const Json::Value& jprop,
- sksg::Scene::AnimatorList* animators,
+ sksg::AnimatorList* animators,
std::function<void(const ShapeValue&)>&& apply,
const ShapeValue* noop) {
return BindPropertyImpl(jprop, animators, std::move(apply), noop);