summaryrefslogtreecommitdiffstats
path: root/src/freeglut-test.c
diff options
context:
space:
mode:
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);
+}