xglcomp

view src/opengl.h @ 3:e831d38e6faa

textures
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 22 Jan 2016 07:46:47 +0200
parents
children
line source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
4 #include <GL/gl.h>
5 #include <GL/glx.h>
6 #include <X11/Xlib.h>
8 GLXContext create_gl(Window xwin);
9 void destroy_gl(GLXContext ctx);
11 #endif // OPENGL_H_