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