diff options
author | Brian Paul <[email protected]> | 2010-02-15 18:04:00 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-15 18:04:39 -0700 |
commit | c6e63f3cc235b2d7b06664a493584671a2493045 (patch) | |
tree | 9f254c44ea3fc2c999ed78312a775495a82721f2 /progs/redbook/shadowmap.c | |
parent | bd3829b5f5b204d95d9ac3e5538ca11d0904ba7d (diff) |
progs/redbook: use glew
Diffstat (limited to 'progs/redbook/shadowmap.c')
-rw-r--r-- | progs/redbook/shadowmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/redbook/shadowmap.c b/progs/redbook/shadowmap.c index 3fe1d1e8df2..f37191d9ff3 100644 --- a/progs/redbook/shadowmap.c +++ b/progs/redbook/shadowmap.c @@ -40,11 +40,10 @@ * OpenGL(R) is a registered trademark of Silicon Graphics, Inc. */ -#define GL_GLEXT_PROTOTYPES - #include <math.h> #include <stdio.h> #include <stdlib.h> +#include <GL/glew.h> #include <GL/glut.h> /*#include "helpers.h"*/ @@ -338,6 +337,7 @@ main( int argc, char** argv ) glutInitWindowSize( 512, 512 ); glutInitWindowPosition( 100, 100 ); glutCreateWindow( argv[0] ); + glewInit(); init(); |