From: subhransu mohanty Date: Thu, 18 Jul 2019 07:27:54 +0000 (+0900) Subject: rlottie: Add missing parameter for non thread render scheduler X-Git-Tag: submit/tizen/20190719.015332~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=efe6238aca4830c770f4eb678a6c265e71c10d0b;p=platform%2Fcore%2Fuifw%2Flottie-player.git rlottie: Add missing parameter for non thread render scheduler --- diff --git a/src/lottie/lottieanimation.cpp b/src/lottie/lottieanimation.cpp index 914b2bf..e052895 100644 --- a/src/lottie/lottieanimation.cpp +++ b/src/lottie/lottieanimation.cpp @@ -203,7 +203,7 @@ public: std::future 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); }