]> git.cworth.org Git - apitrace/blob - glimports.hpp
7207523fdfa65c3018301a3598ab50b5d714931b
[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 system's glext.h
35 #define __glext_h_
36
37
38 // Some functions take GLenum disguised as GLint.  Apple noticed and fixed it
39 // in the Mac OS X 10.6.x gl.h headers.  Regardless, C++ typechecking rules
40 // force the wrappers to match the prototype precisely.
41 #if defined(__APPLE__)
42 #  include <AvailabilityMacros.h> // for MAC_OS_X_VERSION_10_7
43 #  if defined(MAC_OS_X_VERSION_10_7)
44 #    define GLenum_int GLint
45 #  else
46 #    define GLenum_int GLenum
47 #  endif
48 #else
49 #  define GLenum_int GLint
50 #endif
51
52
53 #if defined(_WIN32)
54
55 #ifndef WIN32_LEAN_AND_MEAN
56 #define WIN32_LEAN_AND_MEAN 1
57 #endif
58
59 #include <windows.h>
60 #include <GL/gl.h>
61
62 #elif defined(__APPLE__)
63
64 #include <OpenGL/gl.h>
65
66 #else
67
68 #ifdef HAVE_X11
69 #include <X11/Xlib.h>
70 #endif
71
72 #include <GL/gl.h>
73
74 #endif /* !_WIN32 */
75
76
77 // Include our own glext.h
78 #undef __glext_h_
79 #include "glext/glext.h"
80
81
82 #ifndef GL_TEXTURE_INDEX_SIZE_EXT
83 #define GL_TEXTURE_INDEX_SIZE_EXT         0x80ED
84 #endif
85
86
87 #if defined(_WIN32)
88
89 #include "glext/wglext.h"
90
91 #define GLAPIENTRY __stdcall
92
93 #ifndef PFD_SUPPORT_DIRECTDRAW
94 #define PFD_SUPPORT_DIRECTDRAW 0x00002000
95 #endif
96 #ifndef PFD_SUPPORT_COMPOSITION
97 #define PFD_SUPPORT_COMPOSITION 0x00008000
98 #endif
99
100 #ifndef WGL_SWAPMULTIPLE_MAX
101
102 extern "C"
103 typedef struct _WGLSWAP
104 {
105     HDC hdc;
106     UINT uiFlags;
107 } WGLSWAP, *PWGLSWAP, FAR *LPWGLSWAP;
108
109 #define WGL_SWAPMULTIPLE_MAX 16
110
111 #endif /* !WGL_SWAPMULTIPLE_MAX */
112
113 #elif defined(__APPLE__)
114
115 #include <OpenGL/OpenGL.h>
116 #include <OpenGL/CGLIOSurface.h>
117 #include <OpenGL/CGLDevice.h>
118
119 #ifndef CGL_VERSION_1_3
120 #define kCGLPFAOpenGLProfile 99
121 #define kCGLOGLPVersion_Legacy 0x1000
122 #define kCGLOGLPVersion_3_2_Core 0x3200
123 #endif
124
125 extern "C" {
126
127 // From http://www.opensource.apple.com/source/gdb/gdb-954/libcheckpoint/cpcg.c
128 typedef void * CGSConnectionID;
129 typedef int CGSWindowID;
130 typedef int CGSSurfaceID;
131
132 CGLError CGLSetSurface(CGLContextObj ctx, CGSConnectionID cid, CGSWindowID wid, CGSSurfaceID sid);
133 CGLError CGLGetSurface(CGLContextObj ctx, CGSConnectionID* cid, CGSWindowID* wid, CGSSurfaceID* sid);
134 CGLError CGLUpdateContext(CGLContextObj ctx);
135
136 }
137
138 #else
139
140 #ifdef HAVE_X11
141 #include <GL/glx.h>
142 #include "glext/glxext.h"
143 #endif
144
145 /* Prevent collision with trace::Bool */
146 #undef Bool
147
148 #endif
149
150
151 #include "eglimports.hpp"
152
153
154 #endif /* _GLIMPORTS_HPP_ */