projects
/
platform
/
core
/
graphics
/
tizenvg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fe2eed
)
test: print current backend engine name
31/237331/1
author
Hermet Park
<chuneon.park@samsung.com>
Mon, 29 Jun 2020 07:26:02 +0000
(16:26 +0900)
committer
Hermet Park
<chuneon.park@samsung.com>
Mon, 29 Jun 2020 07:26:02 +0000
(16:26 +0900)
Change-Id: Iaafa521556a614b47994914c09228b8e8ae9c9e9
test/testShape.cpp
patch
|
blob
|
history
diff --git
a/test/testShape.cpp
b/test/testShape.cpp
index e32142fb81228be621362aef35d6c4b141fe2ff7..cd1bab12815225f4bc14c5c96a0cc7c9c0586125 100644
(file)
--- a/
test/testShape.cpp
+++ b/
test/testShape.cpp
@@
-1,4
+1,5
@@
#include <thorvg.h>
+#include <iostream>
#include <Elementary.h>
using namespace std;
@@
-107,6
+108,9
@@
int main(int argc, char **argv)
if (!strcmp(argv[1], "gl")) swEngine = false;
}
+ if (swEngine) cout << "engine: software" << endl;
+ else cout << "engine: opengl" << endl;
+
elm_init(argc, argv);
//Show the result using EFL...