X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftexture-manager%2Ftexture-async-loading-helper.cpp;h=f17c62a380b36cf18990acd0857d460acc1f2ade;hb=8f80166ff21655f688f7414eb1e4a843754dbb52;hp=1eee5bcd2becbf67599a1c9f35adccc8d04fe22b;hpb=7f4489a70328526f207bf6006bd6baa2702a9cef;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/texture-manager/texture-async-loading-helper.cpp b/dali-toolkit/internal/texture-manager/texture-async-loading-helper.cpp index 1eee5bc..f17c62a 100644 --- a/dali-toolkit/internal/texture-manager/texture-async-loading-helper.cpp +++ b/dali-toolkit/internal/texture-manager/texture-async-loading-helper.cpp @@ -40,12 +40,13 @@ TextureAsyncLoadingHelper::TextureAsyncLoadingHelper(TextureManager& textureMana { } -void TextureAsyncLoadingHelper::LoadAnimatedImage(const TextureManager::TextureId& textureId, - Dali::AnimatedImageLoading animatedImageLoading, - const std::uint32_t& frameIndex) +void TextureAsyncLoadingHelper::LoadAnimatedImage(const TextureManager::TextureId& textureId, + Dali::AnimatedImageLoading animatedImageLoading, + const std::uint32_t& frameIndex, + const DevelAsyncImageLoader::PreMultiplyOnLoad& preMultiplyOnLoad) { mLoadingInfoContainer.push_back(AsyncLoadingInfo(textureId)); - auto id = GetImplementation(mLoader).LoadAnimatedImage(animatedImageLoading, frameIndex); + auto id = GetImplementation(mLoader).LoadAnimatedImage(animatedImageLoading, frameIndex, preMultiplyOnLoad); mLoadingInfoContainer.back().loadId = id; }