citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit b224bd21d0c493bb90ad87bb0bab1474336fc36c
parent 641c44fbc6100208e049e5c19c586dbaa4108e37
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun, 18 Dec 2016 12:58:52 -0700

src: use alternate ogl includes on osx

Diffstat:
Msrc/demo-common.h | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/demo-common.h b/src/demo-common.h @@ -25,7 +25,8 @@ #include <stdio.h> #if defined(__APPLE__) -# include <OpenGL/OpenGL.h> +# include <OpenGL/gl.h> +# include <OpenGL/glu.h> #else # include <GLES2/gl2.h> #endif