Searched refs:FileType (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgLoader.cpp | 78 static LoadModule* _find(FileType type) in _find() 81 case FileType::Png: { in _find() 87 case FileType::Jpg: { in _find() 93 case FileType::Webp: { in _find() 99 case FileType::Tvg: { in _find() 105 case FileType::Svg: { in _find() 111 case FileType::Ttf: { in _find() 117 case FileType::Lottie: { in _find() 123 case FileType::Raw: { in _find() 135 case FileType::Tvg: { in _find() [all …]
|
D | tvgSaver.cpp | 54 static SaveModule* _find(FileType type) in _find() 57 case FileType::Tvg: { in _find() 63 case FileType::Gif: { in _find() 77 case FileType::Tvg: { in _find() 81 case FileType::Gif: { in _find() 100 return _find(FileType::Tvg); in _find() 102 return _find(FileType::Gif); in _find()
|
D | tvgLoadModule.h | 43 FileType type; //current loader file type 48 LoadModule(FileType type) : type(type) {} in LoadModule() 88 ImageLoader(FileType type) : LoadModule(type) {} in ImageLoader() 105 FontLoader(FileType type) : LoadModule(type) {} in FontLoader()
|
D | tvgFrameModule.h | 40 FrameModule(FileType type) : ImageLoader(type) {} in FrameModule()
|
D | tvgRawLoader.cpp | 40 RawLoader::RawLoader() : ImageLoader(FileType::Raw) in RawLoader()
|
D | tvgCommon.h | 60 enum class FileType { Png = 0, Jpg, Webp, Tvg, Svg, Lottie, Ttf, Raw, Gif, Unknown }; enum
|
D | tvgLottieLoader.cpp | 72 LottieLoader::LottieLoader() : FrameModule(FileType::Lottie), builder(new LottieBuilder) in LottieLoader()
|
D | tvgSvgLoader.cpp | 3801 SvgLoader::SvgLoader() : ImageLoader(FileType::Svg) in SvgLoader()
|