capi: remove unused internal variables. 30/195430/4
authorHermet Park <hermetpark@gmail.com>
Thu, 13 Dec 2018 11:06:30 +0000 (20:06 +0900)
committerHermet Park <chuneon.park@samsung.com>
Fri, 14 Dec 2018 01:57:13 +0000 (01:57 +0000)
Change-Id: I03a11a0c215bc489c282c22d52fb4f93665fca54

src/binding/c/lottieanimation_capi.cpp

index 4152804..80ec93e 100644 (file)
@@ -8,12 +8,7 @@ extern "C" {
 struct Lottie_Animation_S
 {
     std::unique_ptr<Animation> mAnimation;
-    size_t                     mCurFrame{0};
     std::future<Surface>       mRenderTask;
-    size_t                     mFrameNo{0};
-    size_t                     mArraySize{0};
-    size_t                     mWidth{0};
-    size_t                     mHeight{0};
 };
 
 LOT_EXPORT Lottie_Animation_S *lottie_animation_from_file(const char *path)
@@ -77,9 +72,6 @@ LOT_EXPORT const LOTLayerNode * lottie_animation_render_tree(Lottie_Animation_S
 {
     if (!animation) return nullptr;
 
-    animation->mFrameNo = frame_num;
-    animation->mWidth = width;
-    animation->mHeight = height;
     return animation->mAnimation->renderTree(frame_num, width, height);
 }