lottie/player: Update dirty flag enum value. 94/186394/1
authorsubhransu mohanty <sub.mohanty@samsung.com>
Thu, 9 Aug 2018 09:03:53 +0000 (18:03 +0900)
committersubhransu mohanty <sub.mohanty@samsung.com>
Thu, 9 Aug 2018 09:03:53 +0000 (18:03 +0900)
Change-Id: I590ac039ca84c6f9b553db017188821ead852abb

src/lottie/lottieitem.h

index c7480df..9a5c486 100644 (file)
 
 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)
 };