summaryrefslogtreecommitdiff
path: root/progs/glsl/trirast.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/glsl/trirast.c')
-rw-r--r--progs/glsl/trirast.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/glsl/trirast.c b/progs/glsl/trirast.c
index 89df64fc71..3d4decaa2f 100644
--- a/progs/glsl/trirast.c
+++ b/progs/glsl/trirast.c
@@ -15,6 +15,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>
@@ -247,6 +248,7 @@ main(int argc, char *argv[])
glutInitWindowSize(WinWidth, WinHeight);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
win = glutCreateWindow(argv[0]);
+ glewInit();
glutReshapeFunc(Reshape);
glutKeyboardFunc(Key);
glutDisplayFunc(Redisplay);