summaryrefslogtreecommitdiff
path: root/progs/glsl/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/glsl/array.c')
-rw-r--r--progs/glsl/array.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/glsl/array.c b/progs/glsl/array.c
index 46ef8043bc..6da15b2fcc 100644
--- a/progs/glsl/array.c
+++ b/progs/glsl/array.c
@@ -9,9 +9,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
+#include <GL/glew.h>
#include <GL/gl.h>
#include <GL/glut.h>
-#include <GL/glext.h>
#include "extfuncs.h"
#include "shaderutil.h"
@@ -248,6 +248,7 @@ main(int argc, char *argv[])
glutInitWindowSize(500, 500);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
win = glutCreateWindow(argv[0]);
+ glewInit();
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutSpecialFunc(SpecialKey);