summaryrefslogtreecommitdiff
path: root/progs/tests/subtexrate.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/subtexrate.c')
-rw-r--r--progs/tests/subtexrate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/tests/subtexrate.c b/progs/tests/subtexrate.c
index 568b68d552d..4bda970d067 100644
--- a/progs/tests/subtexrate.c
+++ b/progs/tests/subtexrate.c
@@ -5,11 +5,11 @@
* 26 Jan 2006
*/
-#define GL_GLEXT_PROTOTYPES
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
+#include <GL/glew.h>
#include <GL/glut.h>
static GLint WinWidth = 1024, WinHeight = 512;
@@ -337,6 +337,7 @@ main(int argc, char *argv[])
glutInitWindowSize(WinWidth, WinHeight);
glutInitDisplayMode(mode);
glutCreateWindow(argv[0]);
+ glewInit();
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutSpecialFunc(SpecialKey);