summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/shivavg/shivavg.cpp
diff options
context:
space:
mode:
authorRhys Weatherley <rhys.weatherley@nokia.com>2009-06-23 09:54:49 +1000
committerRhys Weatherley <rhys.weatherley@nokia.com>2009-06-23 09:54:49 +1000
commit4360626c48c90b4d1928398b964679b3acde8cc4 (patch)
treed123c6b436b367be2104c4721af946ca2dc8277e /config.tests/unix/shivavg/shivavg.cpp
parent308ed3913b406c43dfdab4fa734a332863dc4cbc (diff)
Integrate the OpenVG graphics system into Qt 4.6
This change also moves the EGL support classes from QtOpenGL to QtGui so they can be shared between OpenGL and OpenVG.
Diffstat (limited to 'config.tests/unix/shivavg/shivavg.cpp')
-rw-r--r--config.tests/unix/shivavg/shivavg.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.tests/unix/shivavg/shivavg.cpp b/config.tests/unix/shivavg/shivavg.cpp
new file mode 100644
index 0000000000..b5d3291d36
--- /dev/null
+++ b/config.tests/unix/shivavg/shivavg.cpp
@@ -0,0 +1,10 @@
+#include <vg/openvg.h>
+
+int main(int, char **)
+{
+ VGint i;
+ i = 2;
+ vgFlush();
+ vgDestroyContextSH();
+ return 0;
+}