dungeon_crawler

view prototype/src/opengl.h @ 7:8fb37db44fd8

first person motion
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 17 Aug 2012 14:29:37 +0300
parents 96de911d05d4
children 5c41e6fcb300
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 class Matrix4x4;
14 void load_matrix(const Matrix4x4 &m);
15 void mult_matrix(const Matrix4x4 &m);
17 #endif /* OPENGL_H_ */