Revert "(Vector) Add GetLayerInfo method"
authorHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Nov 2019 06:16:46 +0000 (15:16 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Tue, 12 Nov 2019 06:16:49 +0000 (15:16 +0900)
This reverts commit 13348d4efbe2f66736fc7e1284e3bfb924b385e4.

Change-Id: I303cd2ddde6ee268b55011b1fd67f4f340339d38

dali/devel-api/adaptor-framework/vector-animation-renderer-plugin.h
dali/devel-api/adaptor-framework/vector-animation-renderer.cpp
dali/devel-api/adaptor-framework/vector-animation-renderer.h
dali/internal/vector-animation/common/vector-animation-renderer-impl.cpp
dali/internal/vector-animation/common/vector-animation-renderer-impl.h
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.cpp
dali/internal/vector-animation/common/vector-animation-renderer-plugin-proxy.h

index a640f3c..6fa992d 100644 (file)
@@ -94,21 +94,13 @@ public:
   virtual float GetFrameRate() const = 0;
 
   /**
-   * @brief Gets the default size of the file.
+   * @brief Gets the default size of the file,.
    *
-   * @param[out] width The default width of the file
-   * @param[out] height The default height of the file
+   * @return The default size of the file
    */
   virtual void GetDefaultSize( uint32_t& width, uint32_t& height ) const = 0;
 
   /**
-   * @brief Gets the layer information of all the child layers.
-   *
-   * @param[out] map The layer information
-   */
-  virtual void GetLayerInfo( Property::Map& map ) const = 0;
-
-  /**
    * @brief Connect to this signal to be notified when the texture upload is completed.
    *
    * @return The signal to connect to.
index f55d839..e9fe5e0 100755 (executable)
@@ -89,11 +89,6 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height
   GetImplementation( *this ).GetDefaultSize( width, height );
 }
 
-void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const
-{
-  GetImplementation( *this ).GetLayerInfo( map );
-}
-
 VectorAnimationRenderer::UploadCompletedSignalType& VectorAnimationRenderer::UploadCompletedSignal()
 {
   return GetImplementation( *this ).UploadCompletedSignal();
index 5db1122..0c0a24a 100755 (executable)
@@ -122,20 +122,12 @@ public:
   float GetFrameRate() const;
 
   /**
-   * @brief Gets the default size of the file.
+   * @brief Gets the default size of the file,.
    *
-   * @param[out] width The default width of the file
-   * @param[out] height The default height of the file
+   * @return The default size of the file
    */
   void GetDefaultSize( uint32_t& width, uint32_t& height ) const;
 
-  /**
-   * @brief Gets the layer information of all the child layers.
-   *
-   * @param[out] map The layer information
-   */
-  void GetLayerInfo( Property::Map& map ) const;
-
 public: // Signals
 
   /**
index b1e3a17..885861f 100644 (file)
@@ -95,11 +95,6 @@ void VectorAnimationRenderer::GetDefaultSize( uint32_t& width, uint32_t& height
   mPlugin.GetDefaultSize( width, height );
 }
 
-void VectorAnimationRenderer::GetLayerInfo( Property::Map& map ) const
-{
-  mPlugin.GetLayerInfo( map );
-}
-
 Dali::VectorAnimationRenderer::UploadCompletedSignalType& VectorAnimationRenderer::UploadCompletedSignal()
 {
   return mPlugin.UploadCompletedSignal();
index 5ede97e..1bc7bac 100755 (executable)
@@ -87,11 +87,6 @@ public:
   void GetDefaultSize( uint32_t& width, uint32_t& height ) const;
 
   /**
-   * @copydoc Dali::VectorAnimationRenderer::GetLayerInfo()
-   */
-  void GetLayerInfo( Property::Map& map ) const;
-
-  /**
    * @copydoc Dali::VectorAnimationRenderer::UploadCompletedSignal()
    */
   Dali::VectorAnimationRenderer::UploadCompletedSignalType& UploadCompletedSignal();
index 009312b..b704c58 100644 (file)
@@ -161,14 +161,6 @@ void VectorAnimationRendererPluginProxy::GetDefaultSize( uint32_t& width, uint32
   }
 }
 
-void VectorAnimationRendererPluginProxy::GetLayerInfo( Property::Map& map ) const
-{
-  if( mPlugin )
-  {
-    mPlugin->GetLayerInfo( map );
-  }
-}
-
 VectorAnimationRendererPlugin::UploadCompletedSignalType& VectorAnimationRendererPluginProxy::UploadCompletedSignal()
 {
   if( mPlugin )
index 17ba06b..2c6267b 100644 (file)
@@ -83,11 +83,6 @@ public:
   void GetDefaultSize( uint32_t& width, uint32_t& height ) const;
 
   /**
-   * @copydoc Dali::VectorAnimationRendererPlugin::GetLayerInfo()
-   */
-  void GetLayerInfo( Property::Map& map ) const;
-
-  /**
    * @copydoc Dali::VectorAnimationRendererPlugin::UploadCompletedSignal()
    */
   VectorAnimationRendererPlugin::UploadCompletedSignalType& UploadCompletedSignal();