18 lines
356 B
C
18 lines
356 B
C
////////////////////////////////
|
|
// NOTE(allen): Includes
|
|
|
|
#ifndef OGL_INC_C
|
|
#define OGL_INC_C
|
|
|
|
#if OS_WINDOWS
|
|
# include "opengl/win32/win32_ogl_impl.h"
|
|
# include "opengl/win32/win32_ogl_impl.c"
|
|
#else
|
|
// TODO(allen): update this error message
|
|
# error no backend for os_gl_inc.c on this operating system
|
|
#endif
|
|
|
|
#include "ogl_helper.c"
|
|
|
|
#endif //OGLS_INC_C
|