| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected