From Gideon May, port to OSX of GLUT examples.

This commit is contained in:
Robert Osfield
2005-11-28 09:15:46 +00:00
parent 3881a55564
commit 81435a28b9
5 changed files with 20 additions and 4 deletions

View File

@@ -7,7 +7,11 @@
#ifdef WIN32
#include <windows.h>
#endif
#include <GL/glut.h>
#ifdef __APPLE__
# include <GLUT/glut.h>
#else
# include <GL/glut.h>
#endif
#include <osg/Timer>
#include <osgUtil/SceneView>
#include <osgDB/ReadFile>