summaryrefslogtreecommitdiffstats
path: root/progs/glsl/multinoise.c
diff options
context:
space:
mode:
authorJakob Bornecrantz <[email protected]>2009-06-14 16:56:34 +0200
committerJakob Bornecrantz <[email protected]>2009-06-14 16:56:34 +0200
commit2fe65e8f149e961afb8ccd9b1e57c5c7e96ecfd6 (patch)
tree4eecf639463b6fa8b25d9e838e692c6b34a22b43 /progs/glsl/multinoise.c
parent6791576f6cc90018bd65c263fa6c16ad2b19cdae (diff)
parentb799af91d5ffbee1481161fec29eb4c92b161272 (diff)
Merge branch 'mesa_7_5_branch'
Diffstat (limited to 'progs/glsl/multinoise.c')
-rw-r--r--progs/glsl/multinoise.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/glsl/multinoise.c b/progs/glsl/multinoise.c
index 2351863aff8..400511508e1 100644
--- a/progs/glsl/multinoise.c
+++ b/progs/glsl/multinoise.c
@@ -8,6 +8,7 @@
#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>
@@ -270,6 +271,7 @@ main(int argc, char *argv[])
glutInitWindowSize(400, 400);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
win = glutCreateWindow(argv[0]);
+ glewInit();
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutSpecialFunc(SpecialKey);