/* Freetype GL - A C OpenGL Freetype engine * * Distributed under the OSI-approved BSD 2-Clause License. See accompanying * file `LICENSE` for more details. */ #ifndef __OPEN_GL_H__ #define __OPEN_GL_H__ #if defined(__APPLE__) #include "TargetConditionals.h" #if TARGET_OS_SIMULATOR || TARGET_OS_IPHONE #if defined(FREETYPE_GL_ES_VERSION_3_0) #include #else #include #endif #else #include #endif #elif defined(_WIN32) || defined(_WIN64) #include #include #else #include #include #endif #endif /* OPEN_GL_H */