diff --git a/src/examples/TvgLoader.cpp b/src/examples/Tvg.cpp similarity index 74% rename from src/examples/TvgLoader.cpp rename to src/examples/Tvg.cpp index 27d0f04e..23874d7e 100644 --- a/src/examples/TvgLoader.cpp +++ b/src/examples/Tvg.cpp @@ -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 diff --git a/src/examples/images/tvg_file.tvg b/src/examples/images/test.tvg similarity index 100% rename from src/examples/images/tvg_file.tvg rename to src/examples/images/test.tvg diff --git a/src/examples/meson.build b/src/examples/meson.build index 64532f75..654263d8 100644 --- a/src/examples/meson.build +++ b/src/examples/meson.build @@ -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',