diff options
author | Keith Whitwell <[email protected]> | 2009-03-10 13:11:23 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-03-10 13:11:23 +0000 |
commit | a58065d4e2fc29644d804c92be773731242664c5 (patch) | |
tree | a5a7387d97c3b4a2f4138769ab90cce54e9156df /progs/tests/quads.c | |
parent | 225de01f83b58a09adfad47a5d71bece63a6ebfd (diff) |
progs/tests: compile with SCons and glew
Also get mingw cross-compilation of these tests working
Diffstat (limited to 'progs/tests/quads.c')
-rw-r--r-- | progs/tests/quads.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/progs/tests/quads.c b/progs/tests/quads.c index 1bf57e6337d..2098b51ccd2 100644 --- a/progs/tests/quads.c +++ b/progs/tests/quads.c @@ -3,10 +3,10 @@ */ -#define GL_GLEXT_PROTOTYPES #include <stdio.h> #include <stdlib.h> #include <math.h> +#include <GL/glew.h> #include <GL/glut.h> #define NUM_QUADS 20 @@ -19,7 +19,7 @@ static GLuint Vbuffer = 0; static GLfloat buf[NUM_QUADS * 6 * 4]; -static GLboolean SwapBuffers = GL_TRUE; +static GLboolean doSwapBuffers = GL_TRUE; static GLint Frames = 0, T0 = 0; @@ -48,7 +48,7 @@ Draw(void) glPopMatrix(); - if (SwapBuffers) + if (doSwapBuffers) glutSwapBuffers(); /* else @@ -91,7 +91,7 @@ Key(unsigned char key, int x, int y) (void) y; switch (key) { case 's': - SwapBuffers = !SwapBuffers; + doSwapBuffers = !doSwapBuffers; break; case 'a': Anim = !Anim; @@ -246,6 +246,7 @@ main(int argc, char *argv[]) glutInitWindowSize(600, 600); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH); Win = glutCreateWindow(argv[0]); + glewInit(); glutReshapeFunc(Reshape); glutKeyboardFunc(Key); glutSpecialFunc(SpecialKey); |