xglcomp

view src/opengl.h @ 2:876efea9424c

OpenGL
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 22 Jan 2016 06:31:03 +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_