MCPcopy Create free account
hub / github.com/Samsung/rlottie / Impl

Method Impl

src/vector/vimageloader.cpp:93–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91#endif // LOTTIE_IMAGE_MODULE_SUPPORT
92
93 Impl()
94 {
95 if (moduleLoad()) {
96 vWarning << "Failed to dlopen librlottie-image-loader library";
97 return;
98 }
99
100 init();
101
102 if (!imageLoad)
103 vWarning << "Failed to find symbol lottie_image_load in "
104 "librlottie-image-loader library";
105
106 if (!imageFree)
107 vWarning << "Failed to find symbol lottie_image_free in "
108 "librlottie-image-loader library";
109
110 if (!imageFromData)
111 vWarning << "Failed to find symbol lottie_image_load_data in "
112 "librlottie-image-loader library";
113 }
114
115 ~Impl() { moduleFree(); }
116

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected