opengl_learn

Step-by-step introduction to OpenGL
git clone https://0xdd.org/code/opengl_learn.git
Log | Files | Refs | README | LICENSE

_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