From: subhransu mohanty Date: Mon, 26 Nov 2018 04:44:37 +0000 (+0900) Subject: lottie/parser: Added warning message for no support of Merge Path Object. X-Git-Tag: submit/tizen/20181129.071502~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F49%2F193749%2F1;p=platform%2Fcore%2Fuifw%2Flottie-player.git lottie/parser: Added warning message for no support of Merge Path Object. Change-Id: I1948f86d8370564e733fba82be9785fbad4766bb --- diff --git a/src/lottie/lottieparser.cpp b/src/lottie/lottieparser.cpp index 3f42d11..2c0493f 100644 --- a/src/lottie/lottieparser.cpp +++ b/src/lottie/lottieparser.cpp @@ -915,6 +915,9 @@ std::shared_ptr 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;