stratgame
view gfx/src/opengl.h @ 4:cd12944a8ea8
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 25 May 2012 05:28:20 +0300 |
parents | 86b53f76899f |
children |
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 #ifdef __cplusplus
13 #include <vmath/vmath.h>
15 void load_gl_matrix(const Matrix4x4 &mat);
16 void mult_gl_matrix(const Matrix4x4 &mat);
17 #endif /* __cplusplus */
19 #endif /* OPENGL_H_ */