diff options
Diffstat (limited to 'progs/tests/vpeval.c')
-rw-r--r-- | progs/tests/vpeval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/tests/vpeval.c b/progs/tests/vpeval.c index 8b6996d3b5c..f07737f9736 100644 --- a/progs/tests/vpeval.c +++ b/progs/tests/vpeval.c @@ -10,7 +10,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> -#define GL_GLEXT_PROTOTYPES +#include <GL/glew.h> #include <GL/glut.h> @@ -222,6 +222,7 @@ main(int argc, char **argv) glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB | GLUT_DEPTH); glutInitWindowPosition(0, 0); glutCreateWindow(argv[0]); + glewInit(); myinit(argc, argv); glutReshapeFunc(myReshape); glutDisplayFunc(display); |