Revert "(Vector) Add GetLayerInfo method"
[platform/core/uifw/dali-adaptor.git] / dali / internal / vector-animation / common / vector-animation-renderer-impl.cpp
index 3f1d9ea..885861f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -75,14 +75,9 @@ void VectorAnimationRenderer::SetSize( uint32_t width, uint32_t height )
   mPlugin.SetSize( width, height );
 }
 
-void VectorAnimationRenderer::StopRender()
+bool VectorAnimationRenderer::Render( uint32_t frameNumber )
 {
-  mPlugin.StopRender();
-}
-
-void VectorAnimationRenderer::Render( uint32_t frameNumber )
-{
-  mPlugin.Render( frameNumber );
+  return mPlugin.Render( frameNumber );
 }
 
 uint32_t VectorAnimationRenderer::GetTotalFrameNumber() const
@@ -100,6 +95,11 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height
   mPlugin.GetDefaultSize( width, height );
 }
 
+Dali::VectorAnimationRenderer::UploadCompletedSignalType& VectorAnimationRenderer::UploadCompletedSignal()
+{
+  return mPlugin.UploadCompletedSignal();
+}
+
 } // namespace Adaptor
 
 } // namespace internal