Revert "[Tizen] CanvasRenderer::Shape: Add ResetPath() method for reset path information"
[platform/core/uifw/dali-adaptor.git] / dali / internal / canvas-renderer / ubuntu / shape-impl-ubuntu.cpp
index ac6d09d..79a4871 100644 (file)
@@ -217,27 +217,6 @@ bool ShapeUbuntu::Close()
 #endif
 }
 
-bool ShapeUbuntu::ResetPath()
-{
-#ifdef THORVG_SUPPORT
-  if(!mTvgShape)
-  {
-    DALI_LOG_ERROR("Shape is null\n");
-    return false;
-  }
-
-  if(static_cast<tvg::Shape*>(mTvgShape)->reset() != tvg::Result::Success)
-  {
-    DALI_LOG_ERROR("reset() fail.\n");
-    return false;
-  }
-  Drawable::SetChanged(true);
-  return true;
-#else
-  return false;
-#endif
-}
-
 bool ShapeUbuntu::SetFillColor(Vector4 color)
 {
 #ifdef THORVG_SUPPORT