Mudbox/MudBoxGL.h Source File

MudBoxGL.h
Go to the documentation of this file.
1 
2 //**************************************************************************/
3 // Copyright (c) 2008 Autodesk, Inc.
4 // All rights reserved.
5 //
6 // Use of this software is subject to the terms of the Autodesk license
7 // agreement provided at the time of installation or download, or which
8 // otherwise accompanies this software in either electronic or hard copy form.
9 //
10 //**************************************************************************/
11 // DESCRIPTION:
12 // CREATED: October 2008
13 //**************************************************************************/
14 
15 #ifndef __MUDBOXSDK_MUDBOXGL_H__
16 #define __MUDBOXSDK_MUDBOXGL_H__
17 
18 // This file provide a convenient way to include OpenGL headers file without
19 // always having to #if all the possibilities.
20 
21 #if defined(__APPLE__)
22 
23 #include <OpenGL/gl.h>
24 #include <OpenGL/glu.h>
25 
26 #elif defined(WIN32) || defined(WIN64)
27 
28 #include <windows.h>
29 #include <gl/gl.h>
30 #include <gl/glu.h>
31 
32 #else
33 
34 #include <GL/gl.h>
35 #include <GL/glu.h>
36 #include "MudBoxX11Clean.h"
37 
38 #endif
39 
40 #endif