framework compatible header includes- courtesy of karl-michael schindler

git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1027 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
w1z7ard
2008-05-31 15:28:18 +00:00
parent 13e202d1c7
commit fa2b94254e
2 changed files with 7 additions and 2 deletions

View File

@ -37,8 +37,8 @@
#endif
#ifdef MACOS
#include <gl.h>
#include <agl.h>
#include <OpenGL/gl.h>
#include <AGL/agl.h>
#endif /** MACOS */
#ifdef WIN32

View File

@ -9,9 +9,14 @@
#ifdef USE_GLES1
#include <GLES/gl.h>
#else
#ifdef __APPLE__
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#else
#include <GL/gl.h>
#include <GL/glu.h>
#endif
#endif
#ifdef USE_FTGL
#ifdef WIN32