dbf-halloween2015

view src/opengl.h @ 3:c37fe5d8a4ed

windows port
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 01 Nov 2015 06:04:28 +0200
parents 50683c78264e
children
line source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
4 #include <GL/glew.h>
6 struct GLCaps {
7 int shaders;
8 int fsaa;
9 int sep_spec;
10 int fbo;
11 int shadow;
12 };
14 extern struct GLCaps glcaps;
16 int init_opengl();
18 #endif /* OPENGL_H_ */