diff options
author | Jakob Bornecrantz <[email protected]> | 2009-06-14 16:56:34 +0200 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-06-14 16:56:34 +0200 |
commit | 2fe65e8f149e961afb8ccd9b1e57c5c7e96ecfd6 (patch) | |
tree | 4eecf639463b6fa8b25d9e838e692c6b34a22b43 /progs/glsl/multitex.c | |
parent | 6791576f6cc90018bd65c263fa6c16ad2b19cdae (diff) | |
parent | b799af91d5ffbee1481161fec29eb4c92b161272 (diff) |
Merge branch 'mesa_7_5_branch'
Diffstat (limited to 'progs/glsl/multitex.c')
-rw-r--r-- | progs/glsl/multitex.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/glsl/multitex.c b/progs/glsl/multitex.c index 1a1c63aaf48..cbf173304c1 100644 --- a/progs/glsl/multitex.c +++ b/progs/glsl/multitex.c @@ -28,6 +28,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <GL/glew.h> #include "GL/glut.h" #include "readtex.h" #include "extfuncs.h" @@ -400,6 +401,7 @@ main(int argc, char *argv[]) glutInitWindowSize(500, 400); glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE); glutCreateWindow(Demo); + glewInit(); glutReshapeFunc(Reshape); glutKeyboardFunc(key); glutSpecialFunc(specialkey); |