diff options
author | José Fonseca <[email protected]> | 2009-01-24 16:39:49 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-01-24 16:39:49 +0000 |
commit | 2e61d136c27b9c740190643668f1e3509ce609dc (patch) | |
tree | 5bdbdaadc620000719422a6d1cfe7d5ec39832c2 /progs/demos/fbo_firecube.c | |
parent | 9bf83fb0162b5ce95fc10ca1a38e6b4a62f9690f (diff) |
progs: Port most of the demos to glew.
A couple of test weren't ported due to glew breakage -- it undefines
GLAPIENTRY.
Diffstat (limited to 'progs/demos/fbo_firecube.c')
-rw-r--r-- | progs/demos/fbo_firecube.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/demos/fbo_firecube.c b/progs/demos/fbo_firecube.c index f5ee82a2f11..4e42924a09e 100644 --- a/progs/demos/fbo_firecube.c +++ b/progs/demos/fbo_firecube.c @@ -29,11 +29,11 @@ * */ -#define GL_GLEXT_PROTOTYPES #include <math.h> #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <GL/glew.h> #include <GL/glut.h> #include "readtex.h" @@ -1037,6 +1037,7 @@ main(int argc, char *argv[]) glutInitWindowSize(WinWidth, WinHeight); Win = glutCreateWindow("fbo_firecube"); + glewInit(); init(argc, argv); glutDisplayFunc(draw); |