intravenous

view src/opengl.h @ 2:472c28b8b875

I think I pretty much nailed the camera
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 21 Apr 2012 23:03:36 +0300
parents 2b30f261f641
children 94d4c60af435
line source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
4 #include <GL/glew.h>
6 #ifndef __APPLE__
7 #include <GL/glut.h>
8 #else
9 #include <GLUT/glut.h>
10 #endif
12 #include <vmath/vmath.h>
14 void load_gl_matrix(const Matrix4x4 &mat);
15 void mult_gl_matrix(const Matrix4x4 &mat);
17 #endif /* OPENGL_H_ */