Visualization Library 2.0.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
OpenGLDefs.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef OpenGLDefs_INCLUDE_ONCE
33 #define OpenGLDefs_INCLUDE_ONCE
34 
35 #include <vlCore/checks.hpp>
36 
37 #if defined(VL_OPENGL_ES1)
38 
39  #include <GLES/khronos_gl.h>
40  #include <GLES/khronos_glext.h>
41  #include <GLES/gles_extra_defines.h> // defines used by VL but not present in GLES 1.x
42 
43 #elif defined(VL_OPENGL_ES2)
44 
45  #include <GLES2/khronos_gl2.h>
46  #include <GLES2/khronos_gl2ext.h>
47  #include <GLES2/gles_extra_defines.h> // defines used by VL but not present in GLES 2.x
48 
49 #elif defined(VL_OPENGL)
50 
51  #if defined(VL_PLATFORM_WINDOWS)
52 
53  #include <GL/mesa_gl.h>
54  #include <GL/glu.h>
55  #include <GL/khronos_glext.h>
56  #include <GL/khronos_wglext.h>
57 
58  #elif defined(VL_PLATFORM_LINUX)
59 
60  #include <GL/mesa_gl.h>
61  #include <GL/glu.h>
62  #include <GL/khronos_glext.h>
63  extern "C" { extern void ( * glXGetProcAddress (const GLubyte *procName)) (void); }
64 
65  #elif defined(VL_PLATFORM_MACOSX)
66 
67  #include <GL/mesa_gl.h>
68  #include <OpenGL/glu.h>
69  #include <GL/khronos_glext.h>
70 
71  #else
72 
73  #error Unknown platform!
74 
75  #endif
76 
77 #endif
78 
79 /* Define NULL */
80 #ifndef NULL
81  #define NULL 0
82 #endif
83 
84 #endif