Remove unused file 49/275849/2
authorHeeyong Song <heeyong.song@samsung.com>
Fri, 3 Jun 2022 01:11:16 +0000 (10:11 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Fri, 10 Jun 2022 00:38:10 +0000 (00:38 +0000)
Change-Id: I2c6bf3a79c616ea196afa177ed6418436d164bb2

dali/devel-api/adaptor-framework/vector-image-renderer-plugin.h [deleted file]
dali/devel-api/file.list

diff --git a/dali/devel-api/adaptor-framework/vector-image-renderer-plugin.h b/dali/devel-api/adaptor-framework/vector-image-renderer-plugin.h
deleted file mode 100644 (file)
index 76d78f7..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-#ifndef DALI_VECTOR_IMAGE_RENDERER_PLUGIN_H
-#define DALI_VECTOR_IMAGE_RENDERER_PLUGIN_H
-
-/*
- * Copyright (c) 2021 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-// INTERNAL INCLUDES
-#include <dali/devel-api/adaptor-framework/pixel-buffer.h>
-
-namespace Dali
-{
-/**
- * VectorImageRendererPlugin is an abstract interface, used by dali-adaptor to render a vector image(SVG).
- * A concrete implementation must be created for each platform and provided as a dynamic library which
- * will be loaded at run time by the adaptor.
- */
-class VectorImageRendererPlugin
-{
-public:
-  /**
-   * @brief Constructor
-   */
-  VectorImageRendererPlugin()
-  {
-  }
-
-  /**
-   * @brief Destructor
-   */
-  virtual ~VectorImageRendererPlugin()
-  {
-  }
-
-  /**
-   * @brief Load vector image data directly.
-   *
-   * @param[in] data The memory data of vector image
-   * @return True if the load success, false otherwise.
-   */
-  virtual bool Load(const Vector<uint8_t>& data) = 0;
-
-  /**
-   * @brief Rasterizes the content to the target buffer synchronously.
-   *
-   * @param[in] buffer The target buffer
-   * @return True if the rendering succeeds, false otherwise.
-   */
-  virtual bool Rasterize(Dali::Devel::PixelBuffer& buffer) = 0;
-
-  /**
-   * @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
-   */
-  virtual void GetDefaultSize(uint32_t& width, uint32_t& height) const = 0;
-
-  /**
-   * @brief Function pointer called in adaptor to create a plugin instance.
-   */
-  using CreateVectorImageRendererFunction = VectorImageRendererPlugin* (*)();
-};
-
-} // namespace Dali
-
-#endif // DALI_VECTOR_IMAGE_RENDERER_PLUGIN_H
index edef100..89cb0a9 100755 (executable)
@@ -103,7 +103,6 @@ SET( devel_api_adaptor_framework_header_files
   ${adaptor_devel_api_dir}/adaptor-framework/vector-animation-renderer.h
   ${adaptor_devel_api_dir}/adaptor-framework/vector-animation-renderer-plugin.h
   ${adaptor_devel_api_dir}/adaptor-framework/vector-image-renderer.h
-  ${adaptor_devel_api_dir}/adaptor-framework/vector-image-renderer-plugin.h
   ${adaptor_devel_api_dir}/adaptor-framework/video-player.h
   ${adaptor_devel_api_dir}/adaptor-framework/video-player-plugin.h
   ${adaptor_devel_api_dir}/adaptor-framework/web-engine.h