Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifndef OpenGLDefs_INCLUDE_ONCE
00033 #define OpenGLDefs_INCLUDE_ONCE
00034
00035 #include <vlCore/checks.hpp>
00036
00037 #if defined(VL_OPENGL_ES1)
00038
00039 #include <GLES/khronos_gl.h>
00040 #include <GLES/khronos_glext.h>
00041 #include <GLES/gles_extra_defines.h>
00042
00043 #elif defined(VL_OPENGL_ES2)
00044
00045 #include <GLES2/khronos_gl2.h>
00046 #include <GLES2/khronos_gl2ext.h>
00047 #include <GLES2/gles_extra_defines.h>
00048
00049 #elif defined(VL_OPENGL)
00050
00051 #if defined(VL_PLATFORM_WINDOWS)
00052
00053 #include <GL/mesa_gl.h>
00054 #include <GL/glu.h>
00055 #include <GL/khronos_glext.h>
00056 #include <GL/khronos_wglext.h>
00057
00058 #elif defined(VL_PLATFORM_LINUX)
00059
00060 #include <GL/mesa_gl.h>
00061 #include <GL/glu.h>
00062 #include <GL/khronos_glext.h>
00063 extern "C" { extern void ( * glXGetProcAddress (const GLubyte *procName)) (void); }
00064
00065 #elif defined(VL_PLATFORM_MACOSX)
00066
00067 #include <GL/mesa_gl.h>
00068 #include <OpenGL/glu.h>
00069 #include <GL/khronos_glext.h>
00070
00071 #else
00072
00073 #error Unknown platform!
00074
00075 #endif
00076
00077 #endif
00078
00079
00080 #ifndef NULL
00081 #define NULL 0
00082 #endif
00083
00084 #endif