commit | 479ea7d87b6d283cd74d345cb618d69a889284d9 | [log] [tgz] |
---|---|---|
author | José Fonseca <jfonseca@vmware.com> | Fri Jan 23 14:35:36 2009 +0000 |
committer | José Fonseca <jfonseca@vmware.com> | Fri Jan 23 14:35:36 2009 +0000 |
tree | 30914b79b70473656b404d2d3700dda609c69688 | |
parent | 57d00016cab9afa3e7853d9830044a8ece9541c4 [diff] [blame] |
progs/trivial: Use glew where needed. Builds on windows now.
diff --git a/progs/trivial/tri-fp.c b/progs/trivial/tri-fp.c index 9ff355a..fcf57f5 100644 --- a/progs/trivial/tri-fp.c +++ b/progs/trivial/tri-fp.c
@@ -25,7 +25,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#define GL_GLEXT_PROTOTYPES +#include <GL/glew.h> #include <GL/glut.h> @@ -157,6 +157,8 @@ exit(1); } + glewInit(); + Init(); glutReshapeFunc(Reshape);