From 68da673a9520f7629f3f2db186d1f3b08eb6b886 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 8 Mar 2016 22:53:29 -0500 Subject: [PATCH] Wrapped this up as explicitly only the Mac thing to do. --- Outputs/CRT/Internals/OpenGL.hpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Outputs/CRT/Internals/OpenGL.hpp b/Outputs/CRT/Internals/OpenGL.hpp index ed9899546..4d373546b 100644 --- a/Outputs/CRT/Internals/OpenGL.hpp +++ b/Outputs/CRT/Internals/OpenGL.hpp @@ -10,7 +10,12 @@ #define OpenGL_h // TODO: figure out correct include paths for other platforms. -#include -#include +#ifdef __APPLE__ + #if TARGET_OS_IPHONE + #else + #include + #include + #endif +#endif #endif /* OpenGL_h */