stratgame
diff gfx/src/opengl.h @ 3:8d95187cb3ee
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Wed, 23 May 2012 17:10:46 +0300 |
parents | src/opengl.h@86b53f76899f |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/src/opengl.h Wed May 23 17:10:46 2012 +0300 1.3 @@ -0,0 +1,19 @@ 1.4 +#ifndef OPENGL_H_ 1.5 +#define OPENGL_H_ 1.6 + 1.7 +#include <GL/glew.h> 1.8 + 1.9 +#ifndef __APPLE__ 1.10 +#include <GL/glut.h> 1.11 +#else 1.12 +#include <GLUT/glut.h> 1.13 +#endif 1.14 + 1.15 +#ifdef __cplusplus 1.16 +#include <vmath/vmath.h> 1.17 + 1.18 +void load_gl_matrix(const Matrix4x4 &mat); 1.19 +void mult_gl_matrix(const Matrix4x4 &mat); 1.20 +#endif /* __cplusplus */ 1.21 + 1.22 +#endif /* OPENGL_H_ */