Searched refs:ImageLoaderManager (Results 1 – 10 of 10) sorted by relevance
45 ImageLoaderManager::ImageLoaderManager(IFileManager& fileManager) : fileManager_(fileManager) in ImageLoaderManager() function in ImageLoaderManager60 ImageLoaderManager::~ImageLoaderManager() in ~ImageLoaderManager()76 ImageLoaderManager::LoadResult ImageLoaderManager::LoadImage(const string_view uri, uint32_t loadFl… in LoadImage()89 ImageLoaderManager::LoadResult ImageLoaderManager::LoadImage(IFile& file, uint32_t loadFlags) in LoadImage()112 ImageLoaderManager::LoadResult ImageLoaderManager::LoadImage( in LoadImage()144 ImageLoaderManager::LoadAnimatedResult ImageLoaderManager::LoadAnimatedImage(IFile& file, uint32_t … in LoadAnimatedImage()166 ImageLoaderManager::LoadAnimatedResult ImageLoaderManager::LoadAnimatedImage( in LoadAnimatedImage()180 ImageLoaderManager::LoadResult ImageLoaderManager::ResultFailure(const string_view error) in ResultFailure()196 ImageLoaderManager::LoadResult ImageLoaderManager::ResultSuccess(IImageContainer::Ptr image) in ResultSuccess()205 ImageLoaderManager::LoadAnimatedResult ImageLoaderManager::ResultFailureAnimated(const string_view … in ResultFailureAnimated()[all …]
39 class ImageLoaderManager final : public IImageLoaderManager, private IPluginRegister::ITypeInfoList…41 explicit ImageLoaderManager(IFileManager& fileManager);42 ~ImageLoaderManager() override;
151 return ImageLoaderManager::ResultFailure("Input data must not be null."); in Load()160 return ImageLoaderManager::ResultFailure("Loading png_ptr failed"); in Load()165 return ImageLoaderManager::ResultFailure("Loading info_ptr failed"); in Load()170 return ImageLoaderManager::ResultFailure("png_jmpbuf to fail"); in Load()192 return ImageLoaderManager::ResultFailure("png LoadFromMemory fail"); in Load()218 class ImageLoaderLibPNGImage final : public ImageLoaderManager::IImageLoader {226 return ImageLoaderManager::ResultFailure("File too big to read."); in Load()233 return ImageLoaderManager::ResultFailure("Reading file failed."); in Load()244 return ImageLoaderManager::ResultFailure("Data too big to read."); in Load()275 ImageLoaderManager::LoadAnimatedResult LoadAnimatedImage( in LoadAnimatedImage()[all …]
183 return ImageLoaderManager::ResultFailure("Input data must not be null."); in Load()193 return ImageLoaderManager::ResultFailure("jpeg_jmpbuf to fail"); in Load()216 return ImageLoaderManager::ResultFailure("jpeg LoadFromMemory fail"); in Load()243 class ImageLoaderLibJPEGImage final : public ImageLoaderManager::IImageLoader {251 return ImageLoaderManager::ResultFailure("File too big to read."); in Load()258 return ImageLoaderManager::ResultFailure("Reading file failed."); in Load()269 return ImageLoaderManager::ResultFailure("Data too big to read."); in Load()303 return ImageLoaderManager::ResultFailureAnimated("Animation not supported."); in LoadAnimatedImage()306 ImageLoaderManager::LoadAnimatedResult LoadAnimatedImage( in LoadAnimatedImage()309 return ImageLoaderManager::ResultFailureAnimated("Animation not supported."); in LoadAnimatedImage()[all …]
365 static ImageLoaderManager::LoadResult CreateImage( in CreateImage()380 return ImageLoaderManager::ResultFailure("Image not supported."); in CreateImage()384 return ImageLoaderManager::ResultFailure("Invalid ktx data."); in CreateImage()466 return ImageLoaderManager::ResultSuccess(CORE_NS::move(image)); in CreateImage()470 static ImageLoaderManager::LoadResult Load( in Load()491 return ImageLoaderManager::ResultFailure("Invalid ktx data."); in Load()495 return ImageLoaderManager::ResultFailure("Invalid ktx data."); in Load()499 return ImageLoaderManager::ResultFailure("Invalid ktx data."); in Load()503 return ImageLoaderManager::ResultFailure("Invalid ktx data."); in Load()665 ImageLoaderManager::LoadAnimatedResult LoadAnimatedImage( in LoadAnimatedImage()[all …]
278 return ImageLoaderManager::ResultFailure("Loading image failed."); in CreateImage()316 return ImageLoaderManager::ResultSuccess(CORE_NS::move(image)); in CreateImage()359 return ImageLoaderManager::ResultFailure("Input data must not be null."); in Load()394 return ImageLoaderManager::ResultFailure(errorString); in Load()396 return ImageLoaderManager::ResultFailure("Loading image failed"); in Load()418 class ImageLoaderStbImage final : public ImageLoaderManager::IImageLoader {426 return ImageLoaderManager::ResultFailure("File too big to read."); in Load()433 return ImageLoaderManager::ResultFailure("Reading file failed."); in Load()444 return ImageLoaderManager::ResultFailure("Data too big to read."); in Load()486 ImageLoaderManager::LoadAnimatedResult LoadAnimatedImage( in LoadAnimatedImage()[all …]
202 ImageLoaderManager::LoadResult LibBaseImage::CreateImage(LibBaseImagePtr imageBytes, uint32_t image… in CreateImage()207 return ImageLoaderManager::ResultFailure("Loading image failed."); in CreateImage()248 return ImageLoaderManager::ResultSuccess(CORE_NS::move(image)); in CreateImage()
73 … static ImageLoaderManager::LoadResult CreateImage(LibBaseImagePtr imageBytes, uint32_t imageWidth,
104 BASE_NS::unique_ptr<class ImageLoaderManager> imageManager_;
146 imageManager_ = make_unique<ImageLoaderManager>(*fileManager_); in Init()