From 1a1bbc799e8075113af6510bdaac246590c75cf0 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Fri, 16 Feb 2024 20:01:52 +0900 Subject: [PATCH] [Tizen] Fix bug when we try to load two image s.t. premultyOnLoad difference Let we seperate cache between "Could-be-premultiplied, but not loaded yet" VS "Do not premultiplied" Currently, we check both of them as same item. Change-Id: I381fa280bdbc32127a254f674750a25615dc4c6b Signed-off-by: Eunki, Hong --- dali-toolkit/internal/texture-manager/texture-manager-type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali-toolkit/internal/texture-manager/texture-manager-type.h b/dali-toolkit/internal/texture-manager/texture-manager-type.h index 2d95210..e498ae1 100644 --- a/dali-toolkit/internal/texture-manager/texture-manager-type.h +++ b/dali-toolkit/internal/texture-manager/texture-manager-type.h @@ -268,7 +268,7 @@ struct TextureInfo cropToMask(cropToMask), orientationCorrection(true), preMultiplyOnLoad(preMultiplyOnLoad), - preMultiplied(false), + preMultiplied(preMultiplyOnLoad), loadYuvPlanes(loadYuvPlanes) { isAnimatedImageFormat = (animatedImageLoading) ? true : false; -- 2.7.4