]> git.cworth.org Git - apitrace/blob - glimports.hpp
Force our glxext.h headers to be included instead of the system ones.
[apitrace] / glimports.hpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 /*
27  * Central place for all GL includes, and respective OS dependent headers.
28  */
29
30 #ifndef _GLIMPORTS_HPP_
31 #define _GLIMPORTS_HPP_
32
33
34 // Prevent including MacOSX's glext.h which lives in OpenGL/glext.h and not
35 // GL/glext.h
36 #define __glext_h_
37
38
39 // Some functions take GLenum disguised as GLint.  Apple noticed and fixed it
40 // in the Mac OS X 10.6.x gl.h headers.  Regardless, C++ typechecking rules
41 // force the wrappers to match the prototype precisely.
42 #if defined(__APPLE__)
43 #  include <AvailabilityMacros.h> // for MAC_OS_X_VERSION_10_7
44 #  if defined(MAC_OS_X_VERSION_10_7)
45 #    define GLenum_int GLint
46 #  else
47 #    define GLenum_int GLenum
48 #  endif
49 #else
50 #  define GLenum_int GLint
51 #endif
52
53
54 #if defined(_WIN32)
55
56 #ifndef WIN32_LEAN_AND_MEAN
57 #define WIN32_LEAN_AND_MEAN 1
58 #endif
59
60 #include <windows.h>
61 #include <GL/gl.h>
62
63 #elif defined(__APPLE__)
64
65 #include <OpenGL/gl.h>
66
67 #else
68
69 #ifdef HAVE_X11
70 #include <X11/Xlib.h>
71 #endif
72
73 #include <GL/gl.h>
74
75 #endif /* !_WIN32 */
76
77
78 // Include our own glext.h
79 #undef __glext_h_
80 #include <GL/glext.h>
81
82
83 #ifndef GL_TEXTURE_INDEX_SIZE_EXT
84 #define GL_TEXTURE_INDEX_SIZE_EXT         0x80ED
85 #endif
86
87
88 #if defined(_WIN32)
89
90 #include <GL/wglext.h>
91
92 #define GLAPIENTRY __stdcall
93
94 #ifndef PFD_SUPPORT_DIRECTDRAW
95 #define PFD_SUPPORT_DIRECTDRAW 0x00002000
96 #endif
97 #ifndef PFD_SUPPORT_COMPOSITION
98 #define PFD_SUPPORT_COMPOSITION 0x00008000
99 #endif
100
101 #ifndef WGL_SWAPMULTIPLE_MAX
102
103 extern "C"
104 typedef struct _WGLSWAP
105 {
106     HDC hdc;
107     UINT uiFlags;
108 } WGLSWAP, *PWGLSWAP, FAR *LPWGLSWAP;
109
110 #define WGL_SWAPMULTIPLE_MAX 16
111
112 #endif /* !WGL_SWAPMULTIPLE_MAX */
113
114 #elif defined(__APPLE__)
115
116 #include <OpenGL/OpenGL.h>
117 #include <OpenGL/CGLIOSurface.h>
118 #include <OpenGL/CGLDevice.h>
119
120 #ifndef CGL_VERSION_1_3
121 #define kCGLPFAOpenGLProfile 99
122 #define kCGLOGLPVersion_Legacy 0x1000
123 #define kCGLOGLPVersion_3_2_Core 0x3200
124 #endif
125
126 extern "C" {
127
128 // From http://www.opensource.apple.com/source/gdb/gdb-954/libcheckpoint/cpcg.c
129 typedef void * CGSConnectionID;
130 typedef int CGSWindowID;
131 typedef int CGSSurfaceID;
132
133 CGLError CGLSetSurface(CGLContextObj ctx, CGSConnectionID cid, CGSWindowID wid, CGSSurfaceID sid);
134 CGLError CGLGetSurface(CGLContextObj ctx, CGSConnectionID* cid, CGSWindowID* wid, CGSSurfaceID* sid);
135 CGLError CGLUpdateContext(CGLContextObj ctx);
136
137 }
138
139 #else
140
141 #ifdef HAVE_X11
142 #include <GL/glx.h>
143 #include <GL/glxext.h>
144 #endif
145
146 /* Prevent collision with trace::Bool */
147 #undef Bool
148
149 #endif
150
151
152 #include "eglimports.hpp"
153
154
155 #endif /* _GLIMPORTS_HPP_ */