summaryrefslogtreecommitdiff
path: root/progs/demos/copypix.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/copypix.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/copypix.c')
-rw-r--r--progs/demos/copypix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/demos/copypix.c b/progs/demos/copypix.c
index 15001e851b..51435acfa0 100644
--- a/progs/demos/copypix.c
+++ b/progs/demos/copypix.c
@@ -6,11 +6,10 @@
*/
-#define GL_GLEXT_PROTOTYPES
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <GL/glew.h>
#include <GL/glut.h>
#include "readtex.h"
@@ -234,6 +233,7 @@ int main( int argc, char *argv[] )
glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE);
glutCreateWindow(argv[0]);
+ glewInit();
Init(ciMode, filename);
Usage();