examples tvg: clean up for tvg consistency.
authorHermet Park <chuneon.park@samsung.com>
Fri, 11 Jun 2021 03:58:15 +0000 (12:58 +0900)
committerHermet Park <chuneon.park@samsung.com>
Mon, 14 Jun 2021 03:51:12 +0000 (12:51 +0900)
no logical changes.

src/examples/Tvg.cpp [moved from src/examples/TvgLoader.cpp with 74% similarity]
src/examples/images/test.tvg [moved from src/examples/images/tvg_file.tvg with 100% similarity]
src/examples/meson.build

similarity index 74%
rename from src/examples/TvgLoader.cpp
rename to src/examples/Tvg.cpp
index 27d0f04..23874d7 100644 (file)
@@ -1,3 +1,25 @@
+/*
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd. All rights reserved.
+
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
 #include "Common.h"
 
 /************************************************************************/
@@ -9,7 +31,7 @@ void tvgDrawCmds(tvg::Canvas* canvas)
    if (!canvas) return;
 
    auto picture = tvg::Picture::gen();
-   picture->load(EXAMPLE_DIR"/tvg_file.tvg");
+   picture->load(EXAMPLE_DIR"/test.tvg");
    canvas->push(move(picture));
 }
 
@@ -99,7 +121,6 @@ int main(int argc, char **argv)
     //Initialize ThorVG Engine
     if (tvg::Initializer::init(tvgEngine, threads) == tvg::Result::Success) {
 
-
         elm_init(argc, argv);
 
         if (tvgEngine == tvg::CanvasEngine::Sw) {
@@ -118,4 +139,4 @@ int main(int argc, char **argv)
         cout << "engine is not supported" << endl;
     }
     return 0;
-}
+}
\ No newline at end of file
index 64532f7..654263d 100644 (file)
@@ -27,10 +27,10 @@ source_file = [
     'Stress.cpp',
     'Stroke.cpp',
     'StrokeLine.cpp',
-    'Svg2.cpp',
     'Svg.cpp',
+    'Svg2.cpp',
     'Transform.cpp',
-    'TvgLoader.cpp',
+    'Tvg.cpp',
     'Update.cpp',
     'ClipPath.cpp',
     'Masking.cpp',