]> git.cworth.org Git - apitrace/blob - glimports.hpp
3cbeb038019f33f6660177c3c04431c91117b144
[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 #if defined(_WIN32)
35 #  ifndef WIN32_LEAN_AND_MEAN
36 #    define WIN32_LEAN_AND_MEAN 1
37 #  endif
38 #  include <windows.h>
39 #elif defined(__APPLE__)
40 #elif defined(HAVE_X11)
41 #  include <X11/Xlib.h>
42 #endif /* !_WIN32 */
43
44
45 #include <GL/gl.h>
46 #include <GL/glext.h>
47
48
49 // GL_NVX_gpu_memory_info
50 #define GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX          0x9047
51 #define GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX    0x9048
52 #define GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX  0x9049
53 #define GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX            0x904A
54 #define GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX            0x904B
55
56
57 #if defined(_WIN32)
58
59 #include <GL/wglext.h>
60
61 #define GLAPIENTRY __stdcall
62
63 #ifndef PFD_SUPPORT_DIRECTDRAW
64 #define PFD_SUPPORT_DIRECTDRAW 0x00002000
65 #endif
66 #ifndef PFD_SUPPORT_COMPOSITION
67 #define PFD_SUPPORT_COMPOSITION 0x00008000
68 #endif
69
70 #ifndef WGL_SWAPMULTIPLE_MAX
71
72 extern "C"
73 typedef struct _WGLSWAP
74 {
75     HDC hdc;
76     UINT uiFlags;
77 } WGLSWAP, *PWGLSWAP, FAR *LPWGLSWAP;
78
79 #define WGL_SWAPMULTIPLE_MAX 16
80
81 #endif /* !WGL_SWAPMULTIPLE_MAX */
82
83 #elif defined(__APPLE__)
84
85 #include <OpenGL/OpenGL.h>
86 #include <OpenGL/CGLIOSurface.h>
87 #include <OpenGL/CGLDevice.h>
88
89 #ifndef CGL_VERSION_1_3
90 #define kCGLPFAOpenGLProfile 99
91 #define kCGLOGLPVersion_Legacy 0x1000
92 #define kCGLOGLPVersion_3_2_Core 0x3200
93 #endif
94
95 extern "C" {
96
97 // From http://www.opensource.apple.com/source/gdb/gdb-954/libcheckpoint/cpcg.c
98 typedef void * CGSConnectionID;
99 typedef int CGSWindowID;
100 typedef int CGSSurfaceID;
101
102 CGLError CGLSetSurface(CGLContextObj ctx, CGSConnectionID cid, CGSWindowID wid, CGSSurfaceID sid);
103 CGLError CGLGetSurface(CGLContextObj ctx, CGSConnectionID* cid, CGSWindowID* wid, CGSSurfaceID* sid);
104 CGLError CGLUpdateContext(CGLContextObj ctx);
105
106 }
107
108 #else
109
110 #ifdef HAVE_X11
111 #include <GL/glx.h>
112 #include <GL/glxext.h>
113 #endif
114
115 /* Prevent collision with trace::Bool */
116 #undef Bool
117
118 #endif
119
120
121 #include "eglimports.hpp"
122
123
124 #endif /* _GLIMPORTS_HPP_ */