dungeon_crawler

view prototype/src/opengl.h @ 12:e95462632f9a

foo
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 19 Aug 2012 05:35:00 +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_ */