2002-07-17 04:07:32 +08:00
|
|
|
//C++ header - Open Scene Graph - Copyright (C) 1998-2002 Robert Osfield
|
2001-10-04 23:12:57 +08:00
|
|
|
//Distributed under the terms of the GNU Library General Public License (LGPL)
|
|
|
|
//as published by the Free Software Foundation.
|
|
|
|
|
2002-02-02 18:52:30 +08:00
|
|
|
#ifndef OSG_GLUT
|
|
|
|
#define OSG_GLUT 1
|
2001-10-04 05:44:07 +08:00
|
|
|
|
2002-08-26 18:30:40 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2002-03-27 07:52:52 +08:00
|
|
|
#if defined(__DARWIN_OSX__)
|
|
|
|
#include <GLUT/glut.h>
|
2001-10-04 05:44:07 +08:00
|
|
|
#else
|
2002-07-23 18:48:22 +08:00
|
|
|
#if defined(__hpux__)
|
|
|
|
#include <glut.h>
|
|
|
|
#else
|
2002-03-27 07:52:52 +08:00
|
|
|
#include <GL/glut.h>
|
2002-07-23 18:48:22 +08:00
|
|
|
#endif
|
2001-10-04 05:44:07 +08:00
|
|
|
#endif
|
|
|
|
|
2002-02-02 18:52:30 +08:00
|
|
|
#endif // __osgGLUT_h
|