rlottie: Disable optimization to fix regression
authorsubhransu mohanty <sub.mohanty@samsung.com>
Fri, 29 Nov 2019 05:13:43 +0000 (14:13 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Wed, 11 Dec 2019 04:55:01 +0000 (13:55 +0900)
src/lottie/lottieitem.cpp

index 60ac376..e4abc39 100644 (file)
@@ -1175,7 +1175,10 @@ void LOTPaintDataItem::updateRenderNode()
 
 void LOTPaintDataItem::renderList(std::vector<VDrawable *> &list)
 {
-    if (!mContentToRender) return;
+    //@TODO This optimization breaks when the layer
+    // is used as Matte. Find out the reason for this
+    // regression then reenable it.
+    //if (!mContentToRender) return;
 
     if (mRenderNodeUpdate) {
         updateRenderNode();