projects
/
platform
/
core
/
uifw
/
lottie-player.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
12c88ff
)
lottie/player: Update dirty flag enum value.
94/186394/1
author
subhransu mohanty
<sub.mohanty@samsung.com>
Thu, 9 Aug 2018 09:03:53 +0000
(18:03 +0900)
committer
subhransu mohanty
<sub.mohanty@samsung.com>
Thu, 9 Aug 2018 09:03:53 +0000
(18:03 +0900)
Change-Id: I590ac039ca84c6f9b553db017188821ead852abb
src/lottie/lottieitem.h
patch
|
blob
|
history
diff --git
a/src/lottie/lottieitem.h
b/src/lottie/lottieitem.h
index c7480df919caa42b5e37609c32e751df91527c4c..9a5c486a9b32b5475243e5404485bc90e6edea0c 100644
(file)
--- 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 = 0x00
01
,
- Matrix = 0x0
010
,
- Alpha = 0x0
100
,
+ None = 0x00,
+ Matrix = 0x0
1
,
+ Alpha = 0x0
2
,
All = (Matrix | Alpha)
};