diff options
Diffstat (limited to 'progs/tests/blendxor.c')
-rw-r--r-- | progs/tests/blendxor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/tests/blendxor.c b/progs/tests/blendxor.c index 8961a827ea..d6dcb8b848 100644 --- a/progs/tests/blendxor.c +++ b/progs/tests/blendxor.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> #include "readtex.c" @@ -183,6 +183,7 @@ main(int argc, char *argv[]) glutInitWindowSize(Width, Height); glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE); Win = glutCreateWindow(argv[0]); + glewInit(); glutReshapeFunc(Reshape); glutKeyboardFunc(Key); glutSpecialFunc(SpecialKey); |