From: subhransu mohanty Date: Thu, 9 Aug 2018 09:03:53 +0000 (+0900) Subject: lottie/player: Update dirty flag enum value. X-Git-Tag: submit/tizen/20180917.042405~128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf784388d0cdba56be23e1d7e92eecedcfdb1412;p=platform%2Fcore%2Fuifw%2Flottie-player.git lottie/player: Update dirty flag enum value. Change-Id: I590ac039ca84c6f9b553db017188821ead852abb --- diff --git a/src/lottie/lottieitem.h b/src/lottie/lottieitem.h index c7480df..9a5c486 100644 --- a/src/lottie/lottieitem.h +++ b/src/lottie/lottieitem.h @@ -15,11 +15,11 @@ V_USE_NAMESPACE -enum class DirtyFlagBit +enum class DirtyFlagBit : uchar { - None = 0x0001, - Matrix = 0x0010, - Alpha = 0x0100, + None = 0x00, + Matrix = 0x01, + Alpha = 0x02, All = (Matrix | Alpha) };