diff options
author | Keith Whitwell <[email protected]> | 2009-06-29 14:13:58 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-06-29 14:15:08 +0100 |
commit | b799af91d5ffbee1481161fec29eb4c92b161272 (patch) | |
tree | a34b7f252be93bfb2b71fc226abfecd44b3fb9a4 /progs/glsl/convolutions.c | |
parent | 9a5ee124347d3f75be2e957142143338dd96abe3 (diff) |
progs/glsl: compile with scons and glew
Get most of these working with scons.
Diffstat (limited to 'progs/glsl/convolutions.c')
-rw-r--r-- | progs/glsl/convolutions.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/glsl/convolutions.c b/progs/glsl/convolutions.c index ac71c68235e..22ce7edcdc5 100644 --- a/progs/glsl/convolutions.c +++ b/progs/glsl/convolutions.c @@ -5,6 +5,8 @@ * Author: Zack Rusin */ +#include <GL/glew.h> + #define GL_GLEXT_PROTOTYPES #include "readtex.h" @@ -455,6 +457,7 @@ int main(int argc, char **argv) exit(1); } + glewInit(); init(); glutReshapeFunc(reshape); |