// // Copyright 2013 Pixar // // Licensed under the terms set forth in the LICENSE.txt file available at // https://opensubdiv.org/license. // #ifndef OPENSUBDIV3_OSD_OPENGL_H #define OPENSUBDIV3_OSD_OPENGL_H #if defined(__APPLE__) #include "TargetConditionals.h" #if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR #include #else #if defined(OSD_USES_GLEW) #include #else #include #endif #endif #elif defined(ANDROID) #include #else #if defined(_WIN32) #define WIN32_LEAN_AND_MEAN #include #endif #if defined(OSD_USES_GLEW) #include #else #include #endif #endif #endif // OPENSUBDIV3_OSD_OPENGL_H