_ogl.h (323B)
1 /* 2 2018 David DiPaola 3 licensed under CC0 (public domain, see https://creativecommons.org/publicdomain/zero/1.0/) 4 */ 5 6 #ifndef __OGL_H 7 #define __OGL_H 8 9 #include <GLFW/glfw3.h> 10 11 extern int _ogl_window_width; 12 extern int _ogl_window_height; 13 14 void 15 _ogl_glfw_error(int error, const char * description); 16 17 #endif 18