Lines Matching refs:skottie
95 sk_sp<skottie::ImageAsset> FileResourceProvider::loadImageAsset(const char resource_path[], in loadImageAsset()
101 class CustomPropertyManager::PropertyInterceptor final : public skottie::PropertyObserver {
106 const LazyHandle<skottie::ColorPropertyHandle>& c) override { in onColorProperty()
114 const LazyHandle<skottie::OpacityPropertyHandle>& o) override { in onOpacityProperty()
122 const LazyHandle<skottie::TransformPropertyHandle>& t) override { in onTransformProperty()
133 class CustomPropertyManager::MarkerInterceptor final : public skottie::MarkerObserver {
154 sk_sp<skottie::PropertyObserver> CustomPropertyManager::getPropertyObserver() const { in getPropertyObserver()
158 sk_sp<skottie::MarkerObserver> CustomPropertyManager::getMarkerObserver() const { in getMarkerObserver()
204 skottie::ColorPropertyValue CustomPropertyManager::getColor(const PropKey& key) const { in getColor()
205 return this->get<skottie::ColorPropertyValue>(key, fColorMap); in getColor()
208 bool CustomPropertyManager::setColor(const PropKey& key, const skottie::ColorPropertyValue& c) { in setColor()
217 skottie::OpacityPropertyValue CustomPropertyManager::getOpacity(const PropKey& key) const { in getOpacity()
218 return this->get<skottie::OpacityPropertyValue>(key, fOpacityMap); in getOpacity()
221 bool CustomPropertyManager::setOpacity(const PropKey& key, const skottie::OpacityPropertyValue& o) { in setOpacity()
231 const skottie::TransformPropertyValue& t) { in setTransform()