00001 00002 //**************************************************************************/ 00003 // Copyright (c) 2008 Autodesk, Inc. 00004 // All rights reserved. 00005 // 00006 // Use of this software is subject to the terms of the Autodesk license 00007 // agreement provided at the time of installation or download, or which 00008 // otherwise accompanies this software in either electronic or hard copy form. 00009 // 00010 //**************************************************************************/ 00011 // DESCRIPTION: 00012 // CREATED: October 2008 00013 //**************************************************************************/ 00014 00015 #ifndef __MUDBOXSDK_MUDBOXGL_H__ 00016 #define __MUDBOXSDK_MUDBOXGL_H__ 00017 00018 // This file provide a convenient way to include OpenGL headers file without 00019 // always having to #if all the possibilities. 00020 00021 #if defined(__APPLE__) 00022 00023 #include <OpenGL/gl.h> 00024 #include <OpenGL/glu.h> 00025 00026 #elif defined(WIN32) || defined(WIN64) 00027 00028 #include <windows.h> 00029 #include <gl/gl.h> 00030 #include <gl/glu.h> 00031 00032 #else 00033 00034 #include <GL/gl.h> 00035 #include <GL/glu.h> 00036 #include "MudBoxX11Clean.h" 00037 00038 #endif 00039 00040 #endif