diff options
author | José Fonseca <[email protected]> | 2009-02-10 20:27:49 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-02-10 20:28:08 +0000 |
commit | 52233f27bb99d21a085117990936d9c355e4ce08 (patch) | |
tree | b714c289b8bcfb89cf02c640c7c491556484b01c /progs/samples/blendeq.c | |
parent | fa9fcf5e8fc1a1fbd25b0943050c51104acb0397 (diff) |
progs: Build samples dir with scons and glew.
Diffstat (limited to 'progs/samples/blendeq.c')
-rw-r--r-- | progs/samples/blendeq.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/progs/samples/blendeq.c b/progs/samples/blendeq.c index d5143ecdf5c..cd0474c5cea 100644 --- a/progs/samples/blendeq.c +++ b/progs/samples/blendeq.c @@ -11,10 +11,7 @@ #include <string.h> #include <stdlib.h> #include <stdio.h> -#ifdef _WIN32 -#include <windows.h> -#endif -#define GL_GLEXT_PROTOTYPES +#include <GL/glew.h> #include <GL/glut.h> GLenum doubleBuffer; @@ -274,6 +271,8 @@ int main(int argc, char **argv) exit(1); } + glewInit(); + /* Make sure blend_logic_op extension is there. */ s = (char *) glGetString(GL_EXTENSIONS); version = (char*) glGetString(GL_VERSION); |