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:
01733cd
)
lottie/parser: Added warning message for no support of Merge Path Object.
49/193749/1
author
subhransu mohanty
<sub.mohanty@samsung.com>
Mon, 26 Nov 2018 04:44:37 +0000
(13:44 +0900)
committer
subhransu mohanty
<sub.mohanty@samsung.com>
Mon, 26 Nov 2018 04:44:37 +0000
(13:44 +0900)
Change-Id: I1948f86d8370564e733fba82be9785fbad4766bb
src/lottie/lottieparser.cpp
patch
|
blob
|
history
diff --git
a/src/lottie/lottieparser.cpp
b/src/lottie/lottieparser.cpp
index 3f42d114f244d920394e9a576b68f7fb9403bcdb..2c0493f2f9bcaa24818f3bba78bfd87bd71d2e4b 100644
(file)
--- a/
src/lottie/lottieparser.cpp
+++ b/
src/lottie/lottieparser.cpp
@@
-915,6
+915,9
@@
std::shared_ptr<LOTData> LottieParserImpl::parseObjectTypeAttr()
} else if (0 == strcmp(type, "rp")) {
curLayerRef->mHasRepeater = true;
return parseReapeaterObject();
+ } else if (0 == strcmp(type, "mm")) {
+ vWarning << "Merge Path is not supported yet";
+ return nullptr;
} else {
#ifdef DEBUG_PARSER
vDebug << "The Object Type not yet handled = " << type;