summaryrefslogtreecommitdiffstats
path: root/src/freeglut-test.c
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2011-09-19 13:32:17 (GMT)
committerTony Theodore <tonyt@logyst.com>2011-09-19 13:32:17 (GMT)
commit06f677ef4545c993f478d8ceea038da3994e9142 (patch)
treeaed6c74a26fce15741b93c67858d72612a38b17f /src/freeglut-test.c
parentaeaa49d81ed95b4dad2df6e7ada15595b73ec701 (diff)
downloadmxe-06f677ef4545c993f478d8ceea038da3994e9142.zip
mxe-06f677ef4545c993f478d8ceea038da3994e9142.tar.gz
mxe-06f677ef4545c993f478d8ceea038da3994e9142.tar.bz2
package freeglut: fix static build and add test program
Diffstat (limited to 'src/freeglut-test.c')
-rw-r--r--src/freeglut-test.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/freeglut-test.c b/src/freeglut-test.c
new file mode 100644
index 0000000..254230b
--- /dev/null
+++ b/src/freeglut-test.c
@@ -0,0 +1,20 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <GL/glut.h>
+
+#include <stdio.h>
+
+int main(int argc, char *argv[])
+{
+ glutInit(&argc, argv);
+ glutInitWindowSize(640,480);
+ glutInitWindowPosition(10,10);
+ glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
+
+ glutCreateWindow("FreeGLUT Shapes");
+
+ glutMainLoop();
+
+ return(0);
+}