rlottie: Add missing parameter for non thread render scheduler
authorsubhransu mohanty <sub.mohanty@samsung.com>
Thu, 18 Jul 2019 07:27:54 +0000 (16:27 +0900)
committerJunsuChoi <jsuya.choi@samsung.com>
Thu, 18 Jul 2019 11:04:28 +0000 (20:04 +0900)
src/lottie/lottieanimation.cpp

index 914b2bf..e052895 100644 (file)
@@ -203,7 +203,7 @@ public:
 
     std::future<Surface> process(SharedRenderTask task)
     {
-        auto result = task->playerImpl->render(task->frameNo, task->surface);
+        auto result = task->playerImpl->render(task->frameNo, task->surface, task->keepAspectRatio);
         task->sender.set_value(result);
         return std::move(task->receiver);
     }