mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-13 19:44:28 +00:00
examples tvg: clean up for tvg consistency.
no logical changes.
This commit is contained in:
parent
2c1f165f19
commit
58fefeb05f
3 changed files with 26 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue