summaryrefslogtreecommitdiff
path: root/progs/demos/pointblast.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-01-24 16:39:49 +0000
committerJosé Fonseca <jfonseca@vmware.com>2009-01-24 16:39:49 +0000
commit2e61d136c27b9c740190643668f1e3509ce609dc (patch)
tree5bdbdaadc620000719422a6d1cfe7d5ec39832c2 /progs/demos/pointblast.c
parent9bf83fb0162b5ce95fc10ca1a38e6b4a62f9690f (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/pointblast.c')
-rw-r--r--progs/demos/pointblast.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/demos/pointblast.c b/progs/demos/pointblast.c
index dbbe2f35a2..2a91b76ad3 100644
--- a/progs/demos/pointblast.c
+++ b/progs/demos/pointblast.c
@@ -18,7 +18,7 @@
#ifdef _WIN32
#include <windows.h>
#endif
-#define GL_GLEXT_PROTOTYPES
+#include <GL/glew.h>
#include <GL/glut.h>
/* Some <math.h> files do not define M_PI... */
@@ -444,6 +444,7 @@ main(int argc, char **argv)
}
glutCreateWindow("point burst");
+ glewInit();
glutDisplayFunc(redraw);
glutMouseFunc(mouse);
glutMotionFunc(mouseMotion);