diff options
Diffstat (limited to 'progs/trivial/quad-tex-3d.c')
-rw-r--r-- | progs/trivial/quad-tex-3d.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/trivial/quad-tex-3d.c b/progs/trivial/quad-tex-3d.c index fd02d9d6adc..ca7ea91d2f3 100644 --- a/progs/trivial/quad-tex-3d.c +++ b/progs/trivial/quad-tex-3d.c @@ -25,6 +25,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> +#include <GL/glew.h> #include <GL/glut.h> @@ -167,6 +168,8 @@ int main(int argc, char **argv) exit(1); } + glewInit(); + Init(); glutReshapeFunc(Reshape); |