annotate src/freeglut-test.c @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents 91aa4270e0e9
children 8a6c466753e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1993
diff changeset
1 /* This file is part of MXE. */
1993
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
2 /* See doc/index.html for further information. */
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
3
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
4 #include <GL/glut.h>
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
5
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
6 #include <stdio.h>
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
7
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
8 int main(int argc, char *argv[])
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
9 {
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
10 glutInit(&argc, argv);
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
11 glutInitWindowSize(640,480);
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
12 glutInitWindowPosition(10,10);
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
13 glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
14
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
15 glutCreateWindow("FreeGLUT Shapes");
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
16
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
17 glutMainLoop();
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
18
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
19 return(0);
91aa4270e0e9 package freeglut: fix static build and add test program
Tony Theodore <tonyt@logyst.com>
parents:
diff changeset
20 }