diff options
author | Jakob Bornecrantz <jakob@vmware.com> | 2009-06-14 16:56:34 +0200 |
---|---|---|
committer | Jakob Bornecrantz <jakob@vmware.com> | 2009-06-14 16:56:34 +0200 |
commit | 2fe65e8f149e961afb8ccd9b1e57c5c7e96ecfd6 (patch) | |
tree | 4eecf639463b6fa8b25d9e838e692c6b34a22b43 /progs/glsl/array.c | |
parent | 6791576f6cc90018bd65c263fa6c16ad2b19cdae (diff) | |
parent | b799af91d5ffbee1481161fec29eb4c92b161272 (diff) |
Merge branch 'mesa_7_5_branch'
Diffstat (limited to 'progs/glsl/array.c')
-rw-r--r-- | progs/glsl/array.c | 3 |
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); |