xglcomp

view src/opengl.h @ 11:cb636a23f4f2

lifted X error reporting from Xlib
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 04 Feb 2016 04:15:15 +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_