1 /**************************************************************************
3 * Copyright 2010 VMware, Inc.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
24 **************************************************************************/
27 * Central place for all GL includes, and respective OS dependent headers.
30 #ifndef _GLIMPORTS_HPP_
31 #define _GLIMPORTS_HPP_
34 // Prevent including system's glext.h
40 #ifndef WIN32_LEAN_AND_MEAN
41 #define WIN32_LEAN_AND_MEAN 1
47 #elif defined(__APPLE__)
49 #include <OpenGL/gl.h>
59 // Include our own glext.h
61 #include "glext/glext.h"
64 #ifndef GL_TEXTURE_INDEX_SIZE_EXT
65 #define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED
71 #include "glext/wglext.h"
73 #define GLAPIENTRY __stdcall
75 #ifndef PFD_SUPPORT_DIRECTDRAW
76 #define PFD_SUPPORT_DIRECTDRAW 0x00002000
78 #ifndef PFD_SUPPORT_COMPOSITION
79 #define PFD_SUPPORT_COMPOSITION 0x00008000
82 #ifndef WGL_SWAPMULTIPLE_MAX
85 typedef struct _WGLSWAP
89 } WGLSWAP, *PWGLSWAP, FAR *LPWGLSWAP;
91 #define WGL_SWAPMULTIPLE_MAX 16
93 #endif /* !WGL_SWAPMULTIPLE_MAX */
95 #elif defined(__APPLE__)
97 #include <OpenGL/OpenGL.h>
98 #include <OpenGL/CGLIOSurface.h>
99 #include <OpenGL/CGLDevice.h>
103 typedef int CGSConnectionID;
104 typedef int CGSWindowID;
105 typedef int CGSSurfaceID;
107 CGLError CGLSetSurface(CGLContextObj ctx, CGSConnectionID cid, CGSWindowID wid, CGSSurfaceID sid);
108 CGLError CGLGetSurface(CGLContextObj ctx, CGSConnectionID* cid, CGSWindowID* wid, CGSSurfaceID* sid);
109 CGLError CGLUpdateContext(CGLContextObj ctx);
116 #include "glext/glxext.h"
118 /* Prevent collision with Trace::Bool */
124 #endif /* _GLIMPORTS_HPP_ */