#ifndef __FTGL__ #define __FTGL__ #ifdef _MSC_VER // stl stuff #pragma warning( disable : 4244 ) #pragma warning( disable : 4251 ) #pragma warning( disable : 4275 ) #pragma warning( disable : 4786 ) #endif #ifndef WIN32 // non windows, doesn't require nonesense as seen below :-) #ifndef __gl_h_ #ifdef __DARWIN_OSX__ #include #include #else #include #include #endif #endif // required for compatibility with glext.h style function definitions of // OpenGL extensions, such as in src/osg/Point.cpp. #ifndef APIENTRY #define APIENTRY #endif #else #if defined(__CYGWIN__) || defined(__MINGW32__) # ifndef APIENTRY # define GLUT_APIENTRY_DEFINED # define APIENTRY __stdcall # endif // XXX This is from Win32's # ifndef CALLBACK # define CALLBACK __stdcall # endif #else // ! __CYGWIN__ // Under windows avoid including // to avoid name space pollution, but Win32's // needs APIENTRY and WINGDIAPI defined properly. // F # if 0 # define WIN32_LEAN_AND_MEAN # include # else // XXX This is from Win32's # ifndef APIENTRY # define GLUT_APIENTRY_DEFINED # if (_MSC_VER >= 800) || defined(_STDCALL_SUPPORTED) # define APIENTRY __stdcall # else # define APIENTRY # endif # endif // XXX This is from Win32's # ifndef CALLBACK # if (defined(_M_MRX000) || defined(_M_IX86) || defined(_M_ALPHA) || defined(_M_PPC)) && !defined(MIDL_PASS) # define CALLBACK __stdcall # else # define CALLBACK # endif # endif #endif // __CYGWIN__ // XXX This is from Win32's and # ifndef WINGDIAPI # define GLUT_WINGDIAPI_DEFINED # define WINGDIAPI __declspec(dllimport) # endif // XXX This is from Win32's # ifndef _WCHAR_T_DEFINED typedef unsigned short wchar_t; # define _WCHAR_T_DEFINED # endif # endif #ifndef __gl_h_ #include #include #endif #endif // lifted from glext.h, to remove dependancy on glext.h #ifndef GL_TEXTURE_2D_BINDING_EXT #define GL_TEXTURE_2D_BINDING_EXT 0x8069 #endif #if defined(_MSC_VER) # ifdef FTGL_LIBRARY_STATIC // staticLib # define FTGL_EXPORT # elif FTGL_LIBRARY // dynamicLib # define FTGL_EXPORT __declspec(dllexport) # else # define FTGL_EXPORT __declspec(dllimport) # endif /* FTGL_LIBRARY */ #else # define FTGL_EXPORT #endif #include #endif // __FTGL__