summaryrefslogtreecommitdiff
path: root/progs/glsl/texdemo1.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-06-29 14:13:58 +0100
committerKeith Whitwell <keithw@vmware.com>2009-06-29 14:15:08 +0100
commitb799af91d5ffbee1481161fec29eb4c92b161272 (patch)
treea34b7f252be93bfb2b71fc226abfecd44b3fb9a4 /progs/glsl/texdemo1.c
parent9a5ee124347d3f75be2e957142143338dd96abe3 (diff)
progs/glsl: compile with scons and glew
Get most of these working with scons.
Diffstat (limited to 'progs/glsl/texdemo1.c')
-rw-r--r--progs/glsl/texdemo1.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/glsl/texdemo1.c b/progs/glsl/texdemo1.c
index 96ddca1f32..08a87a5152 100644
--- a/progs/glsl/texdemo1.c
+++ b/progs/glsl/texdemo1.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"
@@ -426,6 +427,7 @@ main(int argc, char *argv[])
glutInitWindowSize(500, 400);
glutInitDisplayMode(GLUT_RGB | GLUT_DEPTH | GLUT_DOUBLE);
win = glutCreateWindow(Demo);
+ glewInit();
glutReshapeFunc(Reshape);
glutKeyboardFunc(key);
glutSpecialFunc(specialkey);