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/mvarray.c | |
parent | bd3829b5f5b204d95d9ac3e5538ca11d0904ba7d (diff) |
progs/redbook: use glew
Diffstat (limited to 'progs/redbook/mvarray.c')
-rw-r--r-- | progs/redbook/mvarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/redbook/mvarray.c b/progs/redbook/mvarray.c index cbc3937ee94..1022723ad94 100644 --- a/progs/redbook/mvarray.c +++ b/progs/redbook/mvarray.c @@ -46,8 +46,7 @@ * specifically the OpenGL routine glMultiDrawElements(). */ -#define GL_GLEXT_PROTOTYPES - +#include <GL/glew.h> #include <GL/glut.h> #include <stdlib.h> #include <stdio.h> @@ -118,6 +117,7 @@ int main(int argc, char** argv) glutInitWindowSize (350, 350); glutInitWindowPosition (100, 100); glutCreateWindow (argv[0]); + glewInit(); init (); glutDisplayFunc(display); glutReshapeFunc(reshape); |