Lines Matching full:skottie
58 sk_sp<skottie::ImageAsset> FileResourceProvider::loadImageAsset(const char resource_path[], in loadImageAsset()
63 class CustomPropertyManager::PropertyInterceptor final : public skottie::PropertyObserver {
68 const LazyHandle<skottie::ColorPropertyHandle>& c) override { in onColorProperty()
76 const LazyHandle<skottie::OpacityPropertyHandle>& o) override { in onOpacityProperty()
84 const LazyHandle<skottie::TransformPropertyHandle>& t) override { in onTransformProperty()
95 class CustomPropertyManager::MarkerInterceptor final : public skottie::MarkerObserver {
116 sk_sp<skottie::PropertyObserver> CustomPropertyManager::getPropertyObserver() const { in getPropertyObserver()
120 sk_sp<skottie::MarkerObserver> CustomPropertyManager::getMarkerObserver() const { in getMarkerObserver()
166 skottie::ColorPropertyValue CustomPropertyManager::getColor(const PropKey& key) const { in getColor()
167 return this->get<skottie::ColorPropertyValue>(key, fColorMap); in getColor()
170 bool CustomPropertyManager::setColor(const PropKey& key, const skottie::ColorPropertyValue& c) { in setColor()
179 skottie::OpacityPropertyValue CustomPropertyManager::getOpacity(const PropKey& key) const { in getOpacity()
180 return this->get<skottie::OpacityPropertyValue>(key, fOpacityMap); in getOpacity()
183 bool CustomPropertyManager::setOpacity(const PropKey& key, const skottie::OpacityPropertyValue& o) { in setOpacity()
193 const skottie::TransformPropertyValue& t) { in setTransform()