Main MRPT website > C++ reference for MRPT 1.5.6
wglew.h
Go to the documentation of this file.
1 /* +---------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +---------------------------------------------------------------------------+ */
9 
10 /*
11 ** Copyright (c) 2007 The Khronos Group Inc.
12 **
13 ** Permission is hereby granted, free of charge, to any person obtaining a
14 ** copy of this software and/or associated documentation files (the
15 ** "Materials"), to deal in the Materials without restriction, including
16 ** without limitation the rights to use, copy, modify, merge, publish,
17 ** distribute, sublicense, and/or sell copies of the Materials, and to
18 ** permit persons to whom the Materials are furnished to do so, subject to
19 ** the following conditions:
20 **
21 ** The above copyright notice and this permission notice shall be included
22 ** in all copies or substantial portions of the Materials.
23 **
24 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
27 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
28 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
29 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
30 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
31 */
32 
33 #ifndef __wglew_h__
34 #define __wglew_h__
35 #define __WGLEW_H__
36 
37 #ifdef __wglext_h_
38 #error wglext.h included before wglew.h
39 #endif
40 
41 #define __wglext_h_
42 
43 #if !defined(APIENTRY) && !defined(__CYGWIN__)
44 # ifndef WIN32_LEAN_AND_MEAN
45 # define WIN32_LEAN_AND_MEAN 1
46 # endif
47 #include <windows.h>
48 #endif
49 
50 /*
51  * GLEW_STATIC needs to be set when using the static version.
52  * GLEW_BUILD is set when building the DLL version.
53  */
54 #ifdef GLEW_STATIC
55 # define GLEWAPI extern
56 #else
57 # ifdef GLEW_BUILD
58 # define GLEWAPI extern __declspec(dllexport)
59 # else
60 # define GLEWAPI extern __declspec(dllimport)
61 # endif
62 #endif
63 
64 #ifdef __cplusplus
65 extern "C" {
66 #endif
67 
68 /* -------------------------- WGL_3DFX_multisample ------------------------- */
69 
70 #ifndef WGL_3DFX_multisample
71 #define WGL_3DFX_multisample 1
72 
73 #define WGL_SAMPLE_BUFFERS_3DFX 0x2060
74 #define WGL_SAMPLES_3DFX 0x2061
75 
76 #define WGLEW_3DFX_multisample WGLEW_GET_VAR(__WGLEW_3DFX_multisample)
77 
78 #endif /* WGL_3DFX_multisample */
79 
80 /* ------------------------- WGL_3DL_stereo_control ------------------------ */
81 
82 #ifndef WGL_3DL_stereo_control
83 #define WGL_3DL_stereo_control 1
84 
85 #define WGL_STEREO_EMITTER_ENABLE_3DL 0x2055
86 #define WGL_STEREO_EMITTER_DISABLE_3DL 0x2056
87 #define WGL_STEREO_POLARITY_NORMAL_3DL 0x2057
88 #define WGL_STEREO_POLARITY_INVERT_3DL 0x2058
89 
90 typedef BOOL (WINAPI * PFNWGLSETSTEREOEMITTERSTATE3DLPROC) (HDC hDC, UINT uState);
91 
92 #define wglSetStereoEmitterState3DL WGLEW_GET_FUN(__wglewSetStereoEmitterState3DL)
93 
94 #define WGLEW_3DL_stereo_control WGLEW_GET_VAR(__WGLEW_3DL_stereo_control)
95 
96 #endif /* WGL_3DL_stereo_control */
97 
98 /* ------------------------- WGL_ARB_buffer_region ------------------------- */
99 
100 #ifndef WGL_ARB_buffer_region
101 #define WGL_ARB_buffer_region 1
102 
103 #define WGL_FRONT_COLOR_BUFFER_BIT_ARB 0x00000001
104 #define WGL_BACK_COLOR_BUFFER_BIT_ARB 0x00000002
105 #define WGL_DEPTH_BUFFER_BIT_ARB 0x00000004
106 #define WGL_STENCIL_BUFFER_BIT_ARB 0x00000008
107 
108 typedef HANDLE (WINAPI * PFNWGLCREATEBUFFERREGIONARBPROC) (HDC hDC, int iLayerPlane, UINT uType);
109 typedef VOID (WINAPI * PFNWGLDELETEBUFFERREGIONARBPROC) (HANDLE hRegion);
110 typedef BOOL (WINAPI * PFNWGLRESTOREBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc);
111 typedef BOOL (WINAPI * PFNWGLSAVEBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height);
112 
113 #define wglCreateBufferRegionARB WGLEW_GET_FUN(__wglewCreateBufferRegionARB)
114 #define wglDeleteBufferRegionARB WGLEW_GET_FUN(__wglewDeleteBufferRegionARB)
115 #define wglRestoreBufferRegionARB WGLEW_GET_FUN(__wglewRestoreBufferRegionARB)
116 #define wglSaveBufferRegionARB WGLEW_GET_FUN(__wglewSaveBufferRegionARB)
117 
118 #define WGLEW_ARB_buffer_region WGLEW_GET_VAR(__WGLEW_ARB_buffer_region)
119 
120 #endif /* WGL_ARB_buffer_region */
121 
122 /* ------------------------- WGL_ARB_create_context ------------------------ */
123 
124 #ifndef WGL_ARB_create_context
125 #define WGL_ARB_create_context 1
126 
127 #define WGL_CONTEXT_DEBUG_BIT_ARB 0x0001
128 #define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x0002
129 #define WGL_CONTEXT_MAJOR_VERSION_ARB 0x2091
130 #define WGL_CONTEXT_MINOR_VERSION_ARB 0x2092
131 #define WGL_CONTEXT_LAYER_PLANE_ARB 0x2093
132 #define WGL_CONTEXT_FLAGS_ARB 0x2094
133 
134 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int* attribList);
135 
136 #define wglCreateContextAttribsARB WGLEW_GET_FUN(__wglewCreateContextAttribsARB)
137 
138 #define WGLEW_ARB_create_context WGLEW_GET_VAR(__WGLEW_ARB_create_context)
139 
140 #endif /* WGL_ARB_create_context */
141 
142 /* ----------------------- WGL_ARB_extensions_string ----------------------- */
143 
144 #ifndef WGL_ARB_extensions_string
145 #define WGL_ARB_extensions_string 1
146 
147 typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc);
148 
149 #define wglGetExtensionsStringARB WGLEW_GET_FUN(__wglewGetExtensionsStringARB)
150 
151 #define WGLEW_ARB_extensions_string WGLEW_GET_VAR(__WGLEW_ARB_extensions_string)
152 
153 #endif /* WGL_ARB_extensions_string */
154 
155 /* ------------------------ WGL_ARB_framebuffer_sRGB ----------------------- */
156 
157 #ifndef WGL_ARB_framebuffer_sRGB
158 #define WGL_ARB_framebuffer_sRGB 1
159 
160 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB 0x20A9
161 
162 #define WGLEW_ARB_framebuffer_sRGB WGLEW_GET_VAR(__WGLEW_ARB_framebuffer_sRGB)
163 
164 #endif /* WGL_ARB_framebuffer_sRGB */
165 
166 /* ----------------------- WGL_ARB_make_current_read ----------------------- */
167 
168 #ifndef WGL_ARB_make_current_read
169 #define WGL_ARB_make_current_read 1
170 
171 #define ERROR_INVALID_PIXEL_TYPE_ARB 0x2043
172 #define ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054
173 
174 typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCARBPROC) (VOID);
175 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
176 
177 #define wglGetCurrentReadDCARB WGLEW_GET_FUN(__wglewGetCurrentReadDCARB)
178 #define wglMakeContextCurrentARB WGLEW_GET_FUN(__wglewMakeContextCurrentARB)
179 
180 #define WGLEW_ARB_make_current_read WGLEW_GET_VAR(__WGLEW_ARB_make_current_read)
181 
182 #endif /* WGL_ARB_make_current_read */
183 
184 /* -------------------------- WGL_ARB_multisample -------------------------- */
185 
186 #ifndef WGL_ARB_multisample
187 #define WGL_ARB_multisample 1
188 
189 #define WGL_SAMPLE_BUFFERS_ARB 0x2041
190 #define WGL_SAMPLES_ARB 0x2042
191 
192 #define WGLEW_ARB_multisample WGLEW_GET_VAR(__WGLEW_ARB_multisample)
193 
194 #endif /* WGL_ARB_multisample */
195 
196 /* ---------------------------- WGL_ARB_pbuffer ---------------------------- */
197 
198 #ifndef WGL_ARB_pbuffer
199 #define WGL_ARB_pbuffer 1
200 
201 #define WGL_DRAW_TO_PBUFFER_ARB 0x202D
202 #define WGL_MAX_PBUFFER_PIXELS_ARB 0x202E
203 #define WGL_MAX_PBUFFER_WIDTH_ARB 0x202F
204 #define WGL_MAX_PBUFFER_HEIGHT_ARB 0x2030
205 #define WGL_PBUFFER_LARGEST_ARB 0x2033
206 #define WGL_PBUFFER_WIDTH_ARB 0x2034
207 #define WGL_PBUFFER_HEIGHT_ARB 0x2035
208 #define WGL_PBUFFER_LOST_ARB 0x2036
209 
210 DECLARE_HANDLE(HPBUFFERARB);
211 
212 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int* piAttribList);
213 typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFERARBPROC) (HPBUFFERARB hPbuffer);
214 typedef HDC (WINAPI * PFNWGLGETPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer);
215 typedef BOOL (WINAPI * PFNWGLQUERYPBUFFERARBPROC) (HPBUFFERARB hPbuffer, int iAttribute, int* piValue);
216 typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer, HDC hDC);
217 
218 #define wglCreatePbufferARB WGLEW_GET_FUN(__wglewCreatePbufferARB)
219 #define wglDestroyPbufferARB WGLEW_GET_FUN(__wglewDestroyPbufferARB)
220 #define wglGetPbufferDCARB WGLEW_GET_FUN(__wglewGetPbufferDCARB)
221 #define wglQueryPbufferARB WGLEW_GET_FUN(__wglewQueryPbufferARB)
222 #define wglReleasePbufferDCARB WGLEW_GET_FUN(__wglewReleasePbufferDCARB)
223 
224 #define WGLEW_ARB_pbuffer WGLEW_GET_VAR(__WGLEW_ARB_pbuffer)
225 
226 #endif /* WGL_ARB_pbuffer */
227 
228 /* -------------------------- WGL_ARB_pixel_format ------------------------- */
229 
230 #ifndef WGL_ARB_pixel_format
231 #define WGL_ARB_pixel_format 1
232 
233 #define WGL_NUMBER_PIXEL_FORMATS_ARB 0x2000
234 #define WGL_DRAW_TO_WINDOW_ARB 0x2001
235 #define WGL_DRAW_TO_BITMAP_ARB 0x2002
236 #define WGL_ACCELERATION_ARB 0x2003
237 #define WGL_NEED_PALETTE_ARB 0x2004
238 #define WGL_NEED_SYSTEM_PALETTE_ARB 0x2005
239 #define WGL_SWAP_LAYER_BUFFERS_ARB 0x2006
240 #define WGL_SWAP_METHOD_ARB 0x2007
241 #define WGL_NUMBER_OVERLAYS_ARB 0x2008
242 #define WGL_NUMBER_UNDERLAYS_ARB 0x2009
243 #define WGL_TRANSPARENT_ARB 0x200A
244 #define WGL_SHARE_DEPTH_ARB 0x200C
245 #define WGL_SHARE_STENCIL_ARB 0x200D
246 #define WGL_SHARE_ACCUM_ARB 0x200E
247 #define WGL_SUPPORT_GDI_ARB 0x200F
248 #define WGL_SUPPORT_OPENGL_ARB 0x2010
249 #define WGL_DOUBLE_BUFFER_ARB 0x2011
250 #define WGL_STEREO_ARB 0x2012
251 #define WGL_PIXEL_TYPE_ARB 0x2013
252 #define WGL_COLOR_BITS_ARB 0x2014
253 #define WGL_RED_BITS_ARB 0x2015
254 #define WGL_RED_SHIFT_ARB 0x2016
255 #define WGL_GREEN_BITS_ARB 0x2017
256 #define WGL_GREEN_SHIFT_ARB 0x2018
257 #define WGL_BLUE_BITS_ARB 0x2019
258 #define WGL_BLUE_SHIFT_ARB 0x201A
259 #define WGL_ALPHA_BITS_ARB 0x201B
260 #define WGL_ALPHA_SHIFT_ARB 0x201C
261 #define WGL_ACCUM_BITS_ARB 0x201D
262 #define WGL_ACCUM_RED_BITS_ARB 0x201E
263 #define WGL_ACCUM_GREEN_BITS_ARB 0x201F
264 #define WGL_ACCUM_BLUE_BITS_ARB 0x2020
265 #define WGL_ACCUM_ALPHA_BITS_ARB 0x2021
266 #define WGL_DEPTH_BITS_ARB 0x2022
267 #define WGL_STENCIL_BITS_ARB 0x2023
268 #define WGL_AUX_BUFFERS_ARB 0x2024
269 #define WGL_NO_ACCELERATION_ARB 0x2025
270 #define WGL_GENERIC_ACCELERATION_ARB 0x2026
271 #define WGL_FULL_ACCELERATION_ARB 0x2027
272 #define WGL_SWAP_EXCHANGE_ARB 0x2028
273 #define WGL_SWAP_COPY_ARB 0x2029
274 #define WGL_SWAP_UNDEFINED_ARB 0x202A
275 #define WGL_TYPE_RGBA_ARB 0x202B
276 #define WGL_TYPE_COLORINDEX_ARB 0x202C
277 #define WGL_TRANSPARENT_RED_VALUE_ARB 0x2037
278 #define WGL_TRANSPARENT_GREEN_VALUE_ARB 0x2038
279 #define WGL_TRANSPARENT_BLUE_VALUE_ARB 0x2039
280 #define WGL_TRANSPARENT_ALPHA_VALUE_ARB 0x203A
281 #define WGL_TRANSPARENT_INDEX_VALUE_ARB 0x203B
282 
283 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int* piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
284 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int* piAttributes, FLOAT *pfValues);
285 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int* piAttributes, int *piValues);
286 
287 #define wglChoosePixelFormatARB WGLEW_GET_FUN(__wglewChoosePixelFormatARB)
288 #define wglGetPixelFormatAttribfvARB WGLEW_GET_FUN(__wglewGetPixelFormatAttribfvARB)
289 #define wglGetPixelFormatAttribivARB WGLEW_GET_FUN(__wglewGetPixelFormatAttribivARB)
290 
291 #define WGLEW_ARB_pixel_format WGLEW_GET_VAR(__WGLEW_ARB_pixel_format)
292 
293 #endif /* WGL_ARB_pixel_format */
294 
295 /* ----------------------- WGL_ARB_pixel_format_float ---------------------- */
296 
297 #ifndef WGL_ARB_pixel_format_float
298 #define WGL_ARB_pixel_format_float 1
299 
300 #define WGL_TYPE_RGBA_FLOAT_ARB 0x21A0
301 
302 #define WGLEW_ARB_pixel_format_float WGLEW_GET_VAR(__WGLEW_ARB_pixel_format_float)
303 
304 #endif /* WGL_ARB_pixel_format_float */
305 
306 /* ------------------------- WGL_ARB_render_texture ------------------------ */
307 
308 #ifndef WGL_ARB_render_texture
309 #define WGL_ARB_render_texture 1
310 
311 #define WGL_BIND_TO_TEXTURE_RGB_ARB 0x2070
312 #define WGL_BIND_TO_TEXTURE_RGBA_ARB 0x2071
313 #define WGL_TEXTURE_FORMAT_ARB 0x2072
314 #define WGL_TEXTURE_TARGET_ARB 0x2073
315 #define WGL_MIPMAP_TEXTURE_ARB 0x2074
316 #define WGL_TEXTURE_RGB_ARB 0x2075
317 #define WGL_TEXTURE_RGBA_ARB 0x2076
318 #define WGL_NO_TEXTURE_ARB 0x2077
319 #define WGL_TEXTURE_CUBE_MAP_ARB 0x2078
320 #define WGL_TEXTURE_1D_ARB 0x2079
321 #define WGL_TEXTURE_2D_ARB 0x207A
322 #define WGL_MIPMAP_LEVEL_ARB 0x207B
323 #define WGL_CUBE_MAP_FACE_ARB 0x207C
324 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x207D
325 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x207E
326 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x207F
327 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x2080
328 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x2081
329 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x2082
330 #define WGL_FRONT_LEFT_ARB 0x2083
331 #define WGL_FRONT_RIGHT_ARB 0x2084
332 #define WGL_BACK_LEFT_ARB 0x2085
333 #define WGL_BACK_RIGHT_ARB 0x2086
334 #define WGL_AUX0_ARB 0x2087
335 #define WGL_AUX1_ARB 0x2088
336 #define WGL_AUX2_ARB 0x2089
337 #define WGL_AUX3_ARB 0x208A
338 #define WGL_AUX4_ARB 0x208B
339 #define WGL_AUX5_ARB 0x208C
340 #define WGL_AUX6_ARB 0x208D
341 #define WGL_AUX7_ARB 0x208E
342 #define WGL_AUX8_ARB 0x208F
343 #define WGL_AUX9_ARB 0x2090
344 
345 typedef BOOL (WINAPI * PFNWGLBINDTEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
346 typedef BOOL (WINAPI * PFNWGLRELEASETEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
347 typedef BOOL (WINAPI * PFNWGLSETPBUFFERATTRIBARBPROC) (HPBUFFERARB hPbuffer, const int* piAttribList);
348 
349 #define wglBindTexImageARB WGLEW_GET_FUN(__wglewBindTexImageARB)
350 #define wglReleaseTexImageARB WGLEW_GET_FUN(__wglewReleaseTexImageARB)
351 #define wglSetPbufferAttribARB WGLEW_GET_FUN(__wglewSetPbufferAttribARB)
352 
353 #define WGLEW_ARB_render_texture WGLEW_GET_VAR(__WGLEW_ARB_render_texture)
354 
355 #endif /* WGL_ARB_render_texture */
356 
357 /* ----------------------- WGL_ATI_pixel_format_float ---------------------- */
358 
359 #ifndef WGL_ATI_pixel_format_float
360 #define WGL_ATI_pixel_format_float 1
361 
362 #define WGL_TYPE_RGBA_FLOAT_ATI 0x21A0
363 #define GL_RGBA_FLOAT_MODE_ATI 0x8820
364 #define GL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI 0x8835
365 
366 #define WGLEW_ATI_pixel_format_float WGLEW_GET_VAR(__WGLEW_ATI_pixel_format_float)
367 
368 #endif /* WGL_ATI_pixel_format_float */
369 
370 /* -------------------- WGL_ATI_render_texture_rectangle ------------------- */
371 
372 #ifndef WGL_ATI_render_texture_rectangle
373 #define WGL_ATI_render_texture_rectangle 1
374 
375 #define WGL_TEXTURE_RECTANGLE_ATI 0x21A5
376 
377 #define WGLEW_ATI_render_texture_rectangle WGLEW_GET_VAR(__WGLEW_ATI_render_texture_rectangle)
378 
379 #endif /* WGL_ATI_render_texture_rectangle */
380 
381 /* -------------------------- WGL_EXT_depth_float -------------------------- */
382 
383 #ifndef WGL_EXT_depth_float
384 #define WGL_EXT_depth_float 1
385 
386 #define WGL_DEPTH_FLOAT_EXT 0x2040
387 
388 #define WGLEW_EXT_depth_float WGLEW_GET_VAR(__WGLEW_EXT_depth_float)
389 
390 #endif /* WGL_EXT_depth_float */
391 
392 /* ---------------------- WGL_EXT_display_color_table ---------------------- */
393 
394 #ifndef WGL_EXT_display_color_table
395 #define WGL_EXT_display_color_table 1
396 
401 
402 #define wglBindDisplayColorTableEXT WGLEW_GET_FUN(__wglewBindDisplayColorTableEXT)
403 #define wglCreateDisplayColorTableEXT WGLEW_GET_FUN(__wglewCreateDisplayColorTableEXT)
404 #define wglDestroyDisplayColorTableEXT WGLEW_GET_FUN(__wglewDestroyDisplayColorTableEXT)
405 #define wglLoadDisplayColorTableEXT WGLEW_GET_FUN(__wglewLoadDisplayColorTableEXT)
406 
407 #define WGLEW_EXT_display_color_table WGLEW_GET_VAR(__WGLEW_EXT_display_color_table)
408 
409 #endif /* WGL_EXT_display_color_table */
410 
411 /* ----------------------- WGL_EXT_extensions_string ----------------------- */
412 
413 #ifndef WGL_EXT_extensions_string
414 #define WGL_EXT_extensions_string 1
415 
416 typedef const char* (WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC) (void);
417 
418 #define wglGetExtensionsStringEXT WGLEW_GET_FUN(__wglewGetExtensionsStringEXT)
419 
420 #define WGLEW_EXT_extensions_string WGLEW_GET_VAR(__WGLEW_EXT_extensions_string)
421 
422 #endif /* WGL_EXT_extensions_string */
423 
424 /* ------------------------ WGL_EXT_framebuffer_sRGB ----------------------- */
425 
426 #ifndef WGL_EXT_framebuffer_sRGB
427 #define WGL_EXT_framebuffer_sRGB 1
428 
429 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT 0x20A9
430 
431 #define WGLEW_EXT_framebuffer_sRGB WGLEW_GET_VAR(__WGLEW_EXT_framebuffer_sRGB)
432 
433 #endif /* WGL_EXT_framebuffer_sRGB */
434 
435 /* ----------------------- WGL_EXT_make_current_read ----------------------- */
436 
437 #ifndef WGL_EXT_make_current_read
438 #define WGL_EXT_make_current_read 1
439 
440 #define ERROR_INVALID_PIXEL_TYPE_EXT 0x2043
441 
442 typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCEXTPROC) (VOID);
443 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
444 
445 #define wglGetCurrentReadDCEXT WGLEW_GET_FUN(__wglewGetCurrentReadDCEXT)
446 #define wglMakeContextCurrentEXT WGLEW_GET_FUN(__wglewMakeContextCurrentEXT)
447 
448 #define WGLEW_EXT_make_current_read WGLEW_GET_VAR(__WGLEW_EXT_make_current_read)
449 
450 #endif /* WGL_EXT_make_current_read */
451 
452 /* -------------------------- WGL_EXT_multisample -------------------------- */
453 
454 #ifndef WGL_EXT_multisample
455 #define WGL_EXT_multisample 1
456 
457 #define WGL_SAMPLE_BUFFERS_EXT 0x2041
458 #define WGL_SAMPLES_EXT 0x2042
459 
460 #define WGLEW_EXT_multisample WGLEW_GET_VAR(__WGLEW_EXT_multisample)
461 
462 #endif /* WGL_EXT_multisample */
463 
464 /* ---------------------------- WGL_EXT_pbuffer ---------------------------- */
465 
466 #ifndef WGL_EXT_pbuffer
467 #define WGL_EXT_pbuffer 1
468 
469 #define WGL_DRAW_TO_PBUFFER_EXT 0x202D
470 #define WGL_MAX_PBUFFER_PIXELS_EXT 0x202E
471 #define WGL_MAX_PBUFFER_WIDTH_EXT 0x202F
472 #define WGL_MAX_PBUFFER_HEIGHT_EXT 0x2030
473 #define WGL_OPTIMAL_PBUFFER_WIDTH_EXT 0x2031
474 #define WGL_OPTIMAL_PBUFFER_HEIGHT_EXT 0x2032
475 #define WGL_PBUFFER_LARGEST_EXT 0x2033
476 #define WGL_PBUFFER_WIDTH_EXT 0x2034
477 #define WGL_PBUFFER_HEIGHT_EXT 0x2035
478 
479 DECLARE_HANDLE(HPBUFFEREXT);
480 
481 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int* piAttribList);
482 typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer);
483 typedef HDC (WINAPI * PFNWGLGETPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer);
484 typedef BOOL (WINAPI * PFNWGLQUERYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer, int iAttribute, int* piValue);
485 typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer, HDC hDC);
486 
487 #define wglCreatePbufferEXT WGLEW_GET_FUN(__wglewCreatePbufferEXT)
488 #define wglDestroyPbufferEXT WGLEW_GET_FUN(__wglewDestroyPbufferEXT)
489 #define wglGetPbufferDCEXT WGLEW_GET_FUN(__wglewGetPbufferDCEXT)
490 #define wglQueryPbufferEXT WGLEW_GET_FUN(__wglewQueryPbufferEXT)
491 #define wglReleasePbufferDCEXT WGLEW_GET_FUN(__wglewReleasePbufferDCEXT)
492 
493 #define WGLEW_EXT_pbuffer WGLEW_GET_VAR(__WGLEW_EXT_pbuffer)
494 
495 #endif /* WGL_EXT_pbuffer */
496 
497 /* -------------------------- WGL_EXT_pixel_format ------------------------- */
498 
499 #ifndef WGL_EXT_pixel_format
500 #define WGL_EXT_pixel_format 1
501 
502 #define WGL_NUMBER_PIXEL_FORMATS_EXT 0x2000
503 #define WGL_DRAW_TO_WINDOW_EXT 0x2001
504 #define WGL_DRAW_TO_BITMAP_EXT 0x2002
505 #define WGL_ACCELERATION_EXT 0x2003
506 #define WGL_NEED_PALETTE_EXT 0x2004
507 #define WGL_NEED_SYSTEM_PALETTE_EXT 0x2005
508 #define WGL_SWAP_LAYER_BUFFERS_EXT 0x2006
509 #define WGL_SWAP_METHOD_EXT 0x2007
510 #define WGL_NUMBER_OVERLAYS_EXT 0x2008
511 #define WGL_NUMBER_UNDERLAYS_EXT 0x2009
512 #define WGL_TRANSPARENT_EXT 0x200A
513 #define WGL_TRANSPARENT_VALUE_EXT 0x200B
514 #define WGL_SHARE_DEPTH_EXT 0x200C
515 #define WGL_SHARE_STENCIL_EXT 0x200D
516 #define WGL_SHARE_ACCUM_EXT 0x200E
517 #define WGL_SUPPORT_GDI_EXT 0x200F
518 #define WGL_SUPPORT_OPENGL_EXT 0x2010
519 #define WGL_DOUBLE_BUFFER_EXT 0x2011
520 #define WGL_STEREO_EXT 0x2012
521 #define WGL_PIXEL_TYPE_EXT 0x2013
522 #define WGL_COLOR_BITS_EXT 0x2014
523 #define WGL_RED_BITS_EXT 0x2015
524 #define WGL_RED_SHIFT_EXT 0x2016
525 #define WGL_GREEN_BITS_EXT 0x2017
526 #define WGL_GREEN_SHIFT_EXT 0x2018
527 #define WGL_BLUE_BITS_EXT 0x2019
528 #define WGL_BLUE_SHIFT_EXT 0x201A
529 #define WGL_ALPHA_BITS_EXT 0x201B
530 #define WGL_ALPHA_SHIFT_EXT 0x201C
531 #define WGL_ACCUM_BITS_EXT 0x201D
532 #define WGL_ACCUM_RED_BITS_EXT 0x201E
533 #define WGL_ACCUM_GREEN_BITS_EXT 0x201F
534 #define WGL_ACCUM_BLUE_BITS_EXT 0x2020
535 #define WGL_ACCUM_ALPHA_BITS_EXT 0x2021
536 #define WGL_DEPTH_BITS_EXT 0x2022
537 #define WGL_STENCIL_BITS_EXT 0x2023
538 #define WGL_AUX_BUFFERS_EXT 0x2024
539 #define WGL_NO_ACCELERATION_EXT 0x2025
540 #define WGL_GENERIC_ACCELERATION_EXT 0x2026
541 #define WGL_FULL_ACCELERATION_EXT 0x2027
542 #define WGL_SWAP_EXCHANGE_EXT 0x2028
543 #define WGL_SWAP_COPY_EXT 0x2029
544 #define WGL_SWAP_UNDEFINED_EXT 0x202A
545 #define WGL_TYPE_RGBA_EXT 0x202B
546 #define WGL_TYPE_COLORINDEX_EXT 0x202C
547 
548 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATEXTPROC) (HDC hdc, const int* piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
549 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int* piAttributes, FLOAT *pfValues);
550 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int* piAttributes, int *piValues);
551 
552 #define wglChoosePixelFormatEXT WGLEW_GET_FUN(__wglewChoosePixelFormatEXT)
553 #define wglGetPixelFormatAttribfvEXT WGLEW_GET_FUN(__wglewGetPixelFormatAttribfvEXT)
554 #define wglGetPixelFormatAttribivEXT WGLEW_GET_FUN(__wglewGetPixelFormatAttribivEXT)
555 
556 #define WGLEW_EXT_pixel_format WGLEW_GET_VAR(__WGLEW_EXT_pixel_format)
557 
558 #endif /* WGL_EXT_pixel_format */
559 
560 /* ------------------- WGL_EXT_pixel_format_packed_float ------------------- */
561 
562 #ifndef WGL_EXT_pixel_format_packed_float
563 #define WGL_EXT_pixel_format_packed_float 1
564 
565 #define WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT 0x20A8
566 
567 #define WGLEW_EXT_pixel_format_packed_float WGLEW_GET_VAR(__WGLEW_EXT_pixel_format_packed_float)
568 
569 #endif /* WGL_EXT_pixel_format_packed_float */
570 
571 /* -------------------------- WGL_EXT_swap_control ------------------------- */
572 
573 #ifndef WGL_EXT_swap_control
574 #define WGL_EXT_swap_control 1
575 
576 typedef int (WINAPI * PFNWGLGETSWAPINTERVALEXTPROC) (void);
577 typedef BOOL (WINAPI * PFNWGLSWAPINTERVALEXTPROC) (int interval);
578 
579 #define wglGetSwapIntervalEXT WGLEW_GET_FUN(__wglewGetSwapIntervalEXT)
580 #define wglSwapIntervalEXT WGLEW_GET_FUN(__wglewSwapIntervalEXT)
581 
582 #define WGLEW_EXT_swap_control WGLEW_GET_VAR(__WGLEW_EXT_swap_control)
583 
584 #endif /* WGL_EXT_swap_control */
585 
586 /* --------------------- WGL_I3D_digital_video_control --------------------- */
587 
588 #ifndef WGL_I3D_digital_video_control
589 #define WGL_I3D_digital_video_control 1
590 
591 #define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D 0x2050
592 #define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D 0x2051
593 #define WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D 0x2052
594 #define WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D 0x2053
595 
596 typedef BOOL (WINAPI * PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int* piValue);
597 typedef BOOL (WINAPI * PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int* piValue);
598 
599 #define wglGetDigitalVideoParametersI3D WGLEW_GET_FUN(__wglewGetDigitalVideoParametersI3D)
600 #define wglSetDigitalVideoParametersI3D WGLEW_GET_FUN(__wglewSetDigitalVideoParametersI3D)
601 
602 #define WGLEW_I3D_digital_video_control WGLEW_GET_VAR(__WGLEW_I3D_digital_video_control)
603 
604 #endif /* WGL_I3D_digital_video_control */
605 
606 /* ----------------------------- WGL_I3D_gamma ----------------------------- */
607 
608 #ifndef WGL_I3D_gamma
609 #define WGL_I3D_gamma 1
610 
611 #define WGL_GAMMA_TABLE_SIZE_I3D 0x204E
612 #define WGL_GAMMA_EXCLUDE_DESKTOP_I3D 0x204F
613 
614 typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, USHORT* puRed, USHORT *puGreen, USHORT *puBlue);
615 typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int* piValue);
616 typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, const USHORT* puRed, const USHORT *puGreen, const USHORT *puBlue);
617 typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int* piValue);
618 
619 #define wglGetGammaTableI3D WGLEW_GET_FUN(__wglewGetGammaTableI3D)
620 #define wglGetGammaTableParametersI3D WGLEW_GET_FUN(__wglewGetGammaTableParametersI3D)
621 #define wglSetGammaTableI3D WGLEW_GET_FUN(__wglewSetGammaTableI3D)
622 #define wglSetGammaTableParametersI3D WGLEW_GET_FUN(__wglewSetGammaTableParametersI3D)
623 
624 #define WGLEW_I3D_gamma WGLEW_GET_VAR(__WGLEW_I3D_gamma)
625 
626 #endif /* WGL_I3D_gamma */
627 
628 /* ---------------------------- WGL_I3D_genlock ---------------------------- */
629 
630 #ifndef WGL_I3D_genlock
631 #define WGL_I3D_genlock 1
632 
633 #define WGL_GENLOCK_SOURCE_MULTIVIEW_I3D 0x2044
634 #define WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D 0x2045
635 #define WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D 0x2046
636 #define WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D 0x2047
637 #define WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D 0x2048
638 #define WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D 0x2049
639 #define WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D 0x204A
640 #define WGL_GENLOCK_SOURCE_EDGE_RISING_I3D 0x204B
641 #define WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D 0x204C
642 
643 typedef BOOL (WINAPI * PFNWGLDISABLEGENLOCKI3DPROC) (HDC hDC);
644 typedef BOOL (WINAPI * PFNWGLENABLEGENLOCKI3DPROC) (HDC hDC);
645 typedef BOOL (WINAPI * PFNWGLGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT uRate);
646 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT uDelay);
647 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT uEdge);
648 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEI3DPROC) (HDC hDC, UINT uSource);
649 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT* uRate);
650 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT* uDelay);
651 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT* uEdge);
652 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEI3DPROC) (HDC hDC, UINT* uSource);
653 typedef BOOL (WINAPI * PFNWGLISENABLEDGENLOCKI3DPROC) (HDC hDC, BOOL* pFlag);
654 typedef BOOL (WINAPI * PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC) (HDC hDC, UINT* uMaxLineDelay, UINT *uMaxPixelDelay);
655 
656 #define wglDisableGenlockI3D WGLEW_GET_FUN(__wglewDisableGenlockI3D)
657 #define wglEnableGenlockI3D WGLEW_GET_FUN(__wglewEnableGenlockI3D)
658 #define wglGenlockSampleRateI3D WGLEW_GET_FUN(__wglewGenlockSampleRateI3D)
659 #define wglGenlockSourceDelayI3D WGLEW_GET_FUN(__wglewGenlockSourceDelayI3D)
660 #define wglGenlockSourceEdgeI3D WGLEW_GET_FUN(__wglewGenlockSourceEdgeI3D)
661 #define wglGenlockSourceI3D WGLEW_GET_FUN(__wglewGenlockSourceI3D)
662 #define wglGetGenlockSampleRateI3D WGLEW_GET_FUN(__wglewGetGenlockSampleRateI3D)
663 #define wglGetGenlockSourceDelayI3D WGLEW_GET_FUN(__wglewGetGenlockSourceDelayI3D)
664 #define wglGetGenlockSourceEdgeI3D WGLEW_GET_FUN(__wglewGetGenlockSourceEdgeI3D)
665 #define wglGetGenlockSourceI3D WGLEW_GET_FUN(__wglewGetGenlockSourceI3D)
666 #define wglIsEnabledGenlockI3D WGLEW_GET_FUN(__wglewIsEnabledGenlockI3D)
667 #define wglQueryGenlockMaxSourceDelayI3D WGLEW_GET_FUN(__wglewQueryGenlockMaxSourceDelayI3D)
668 
669 #define WGLEW_I3D_genlock WGLEW_GET_VAR(__WGLEW_I3D_genlock)
670 
671 #endif /* WGL_I3D_genlock */
672 
673 /* -------------------------- WGL_I3D_image_buffer ------------------------- */
674 
675 #ifndef WGL_I3D_image_buffer
676 #define WGL_I3D_image_buffer 1
677 
678 #define WGL_IMAGE_BUFFER_MIN_ACCESS_I3D 0x00000001
679 #define WGL_IMAGE_BUFFER_LOCK_I3D 0x00000002
680 
681 typedef BOOL (WINAPI * PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC) (HDC hdc, HANDLE* pEvent, LPVOID *pAddress, DWORD *pSize, UINT count);
682 typedef LPVOID (WINAPI * PFNWGLCREATEIMAGEBUFFERI3DPROC) (HDC hDC, DWORD dwSize, UINT uFlags);
683 typedef BOOL (WINAPI * PFNWGLDESTROYIMAGEBUFFERI3DPROC) (HDC hDC, LPVOID pAddress);
684 typedef BOOL (WINAPI * PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC) (HDC hdc, LPVOID* pAddress, UINT count);
685 
686 #define wglAssociateImageBufferEventsI3D WGLEW_GET_FUN(__wglewAssociateImageBufferEventsI3D)
687 #define wglCreateImageBufferI3D WGLEW_GET_FUN(__wglewCreateImageBufferI3D)
688 #define wglDestroyImageBufferI3D WGLEW_GET_FUN(__wglewDestroyImageBufferI3D)
689 #define wglReleaseImageBufferEventsI3D WGLEW_GET_FUN(__wglewReleaseImageBufferEventsI3D)
690 
691 #define WGLEW_I3D_image_buffer WGLEW_GET_VAR(__WGLEW_I3D_image_buffer)
692 
693 #endif /* WGL_I3D_image_buffer */
694 
695 /* ------------------------ WGL_I3D_swap_frame_lock ------------------------ */
696 
697 #ifndef WGL_I3D_swap_frame_lock
698 #define WGL_I3D_swap_frame_lock 1
699 
700 typedef BOOL (WINAPI * PFNWGLDISABLEFRAMELOCKI3DPROC) (VOID);
701 typedef BOOL (WINAPI * PFNWGLENABLEFRAMELOCKI3DPROC) (VOID);
702 typedef BOOL (WINAPI * PFNWGLISENABLEDFRAMELOCKI3DPROC) (BOOL* pFlag);
703 typedef BOOL (WINAPI * PFNWGLQUERYFRAMELOCKMASTERI3DPROC) (BOOL* pFlag);
704 
705 #define wglDisableFrameLockI3D WGLEW_GET_FUN(__wglewDisableFrameLockI3D)
706 #define wglEnableFrameLockI3D WGLEW_GET_FUN(__wglewEnableFrameLockI3D)
707 #define wglIsEnabledFrameLockI3D WGLEW_GET_FUN(__wglewIsEnabledFrameLockI3D)
708 #define wglQueryFrameLockMasterI3D WGLEW_GET_FUN(__wglewQueryFrameLockMasterI3D)
709 
710 #define WGLEW_I3D_swap_frame_lock WGLEW_GET_VAR(__WGLEW_I3D_swap_frame_lock)
711 
712 #endif /* WGL_I3D_swap_frame_lock */
713 
714 /* ------------------------ WGL_I3D_swap_frame_usage ----------------------- */
715 
716 #ifndef WGL_I3D_swap_frame_usage
717 #define WGL_I3D_swap_frame_usage 1
718 
721 typedef BOOL (WINAPI * PFNWGLGETFRAMEUSAGEI3DPROC) (float* pUsage);
722 typedef BOOL (WINAPI * PFNWGLQUERYFRAMETRACKINGI3DPROC) (DWORD* pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage);
723 
724 #define wglBeginFrameTrackingI3D WGLEW_GET_FUN(__wglewBeginFrameTrackingI3D)
725 #define wglEndFrameTrackingI3D WGLEW_GET_FUN(__wglewEndFrameTrackingI3D)
726 #define wglGetFrameUsageI3D WGLEW_GET_FUN(__wglewGetFrameUsageI3D)
727 #define wglQueryFrameTrackingI3D WGLEW_GET_FUN(__wglewQueryFrameTrackingI3D)
728 
729 #define WGLEW_I3D_swap_frame_usage WGLEW_GET_VAR(__WGLEW_I3D_swap_frame_usage)
730 
731 #endif /* WGL_I3D_swap_frame_usage */
732 
733 /* -------------------------- WGL_NV_float_buffer -------------------------- */
734 
735 #ifndef WGL_NV_float_buffer
736 #define WGL_NV_float_buffer 1
737 
738 #define WGL_FLOAT_COMPONENTS_NV 0x20B0
739 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV 0x20B1
740 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV 0x20B2
741 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV 0x20B3
742 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV 0x20B4
743 #define WGL_TEXTURE_FLOAT_R_NV 0x20B5
744 #define WGL_TEXTURE_FLOAT_RG_NV 0x20B6
745 #define WGL_TEXTURE_FLOAT_RGB_NV 0x20B7
746 #define WGL_TEXTURE_FLOAT_RGBA_NV 0x20B8
747 
748 #define WGLEW_NV_float_buffer WGLEW_GET_VAR(__WGLEW_NV_float_buffer)
749 
750 #endif /* WGL_NV_float_buffer */
751 
752 /* -------------------------- WGL_NV_gpu_affinity -------------------------- */
753 
754 #ifndef WGL_NV_gpu_affinity
755 #define WGL_NV_gpu_affinity 1
756 
757 #define WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV 0x20D0
758 #define WGL_ERROR_MISSING_AFFINITY_MASK_NV 0x20D1
759 
760 DECLARE_HANDLE(HGPUNV);
761 typedef struct _GPU_DEVICE {
762  DWORD cb;
763  CHAR DeviceName[32];
764  CHAR DeviceString[128];
765  DWORD Flags;
768 
769 typedef HDC (WINAPI * PFNWGLCREATEAFFINITYDCNVPROC) (const HGPUNV *phGpuList);
770 typedef BOOL (WINAPI * PFNWGLDELETEDCNVPROC) (HDC hdc);
771 typedef BOOL (WINAPI * PFNWGLENUMGPUDEVICESNVPROC) (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice);
772 typedef BOOL (WINAPI * PFNWGLENUMGPUSFROMAFFINITYDCNVPROC) (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu);
773 typedef BOOL (WINAPI * PFNWGLENUMGPUSNVPROC) (UINT iGpuIndex, HGPUNV *phGpu);
774 
775 #define wglCreateAffinityDCNV WGLEW_GET_FUN(__wglewCreateAffinityDCNV)
776 #define wglDeleteDCNV WGLEW_GET_FUN(__wglewDeleteDCNV)
777 #define wglEnumGpuDevicesNV WGLEW_GET_FUN(__wglewEnumGpuDevicesNV)
778 #define wglEnumGpusFromAffinityDCNV WGLEW_GET_FUN(__wglewEnumGpusFromAffinityDCNV)
779 #define wglEnumGpusNV WGLEW_GET_FUN(__wglewEnumGpusNV)
780 
781 #define WGLEW_NV_gpu_affinity WGLEW_GET_VAR(__WGLEW_NV_gpu_affinity)
782 
783 #endif /* WGL_NV_gpu_affinity */
784 
785 /* -------------------------- WGL_NV_present_video ------------------------- */
786 
787 #ifndef WGL_NV_present_video
788 #define WGL_NV_present_video 1
789 
790 #define WGL_NUM_VIDEO_SLOTS_NV 0x20F0
791 
792 DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV);
793 
794 typedef BOOL (WINAPI * PFNWGLBINDVIDEODEVICENVPROC) (HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int* piAttribList);
795 typedef int (WINAPI * PFNWGLENUMERATEVIDEODEVICESNVPROC) (HDC hDc, HVIDEOOUTPUTDEVICENV* phDeviceList);
796 typedef BOOL (WINAPI * PFNWGLQUERYCURRENTCONTEXTNVPROC) (int iAttribute, int* piValue);
797 
798 #define wglBindVideoDeviceNV WGLEW_GET_FUN(__wglewBindVideoDeviceNV)
799 #define wglEnumerateVideoDevicesNV WGLEW_GET_FUN(__wglewEnumerateVideoDevicesNV)
800 #define wglQueryCurrentContextNV WGLEW_GET_FUN(__wglewQueryCurrentContextNV)
801 
802 #define WGLEW_NV_present_video WGLEW_GET_VAR(__WGLEW_NV_present_video)
803 
804 #endif /* WGL_NV_present_video */
805 
806 /* ---------------------- WGL_NV_render_depth_texture ---------------------- */
807 
808 #ifndef WGL_NV_render_depth_texture
809 #define WGL_NV_render_depth_texture 1
810 
811 #define WGL_NO_TEXTURE_ARB 0x2077
812 #define WGL_BIND_TO_TEXTURE_DEPTH_NV 0x20A3
813 #define WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4
814 #define WGL_DEPTH_TEXTURE_FORMAT_NV 0x20A5
815 #define WGL_TEXTURE_DEPTH_COMPONENT_NV 0x20A6
816 #define WGL_DEPTH_COMPONENT_NV 0x20A7
817 
818 #define WGLEW_NV_render_depth_texture WGLEW_GET_VAR(__WGLEW_NV_render_depth_texture)
819 
820 #endif /* WGL_NV_render_depth_texture */
821 
822 /* -------------------- WGL_NV_render_texture_rectangle -------------------- */
823 
824 #ifndef WGL_NV_render_texture_rectangle
825 #define WGL_NV_render_texture_rectangle 1
826 
827 #define WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0
828 #define WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1
829 #define WGL_TEXTURE_RECTANGLE_NV 0x20A2
830 
831 #define WGLEW_NV_render_texture_rectangle WGLEW_GET_VAR(__WGLEW_NV_render_texture_rectangle)
832 
833 #endif /* WGL_NV_render_texture_rectangle */
834 
835 /* --------------------------- WGL_NV_swap_group --------------------------- */
836 
837 #ifndef WGL_NV_swap_group
838 #define WGL_NV_swap_group 1
839 
840 typedef BOOL (WINAPI * PFNWGLBINDSWAPBARRIERNVPROC) (GLuint group, GLuint barrier);
841 typedef BOOL (WINAPI * PFNWGLJOINSWAPGROUPNVPROC) (HDC hDC, GLuint group);
842 typedef BOOL (WINAPI * PFNWGLQUERYFRAMECOUNTNVPROC) (HDC hDC, GLuint* count);
843 typedef BOOL (WINAPI * PFNWGLQUERYMAXSWAPGROUPSNVPROC) (HDC hDC, GLuint* maxGroups, GLuint *maxBarriers);
844 typedef BOOL (WINAPI * PFNWGLQUERYSWAPGROUPNVPROC) (HDC hDC, GLuint* group);
845 typedef BOOL (WINAPI * PFNWGLRESETFRAMECOUNTNVPROC) (HDC hDC);
846 
847 #define wglBindSwapBarrierNV WGLEW_GET_FUN(__wglewBindSwapBarrierNV)
848 #define wglJoinSwapGroupNV WGLEW_GET_FUN(__wglewJoinSwapGroupNV)
849 #define wglQueryFrameCountNV WGLEW_GET_FUN(__wglewQueryFrameCountNV)
850 #define wglQueryMaxSwapGroupsNV WGLEW_GET_FUN(__wglewQueryMaxSwapGroupsNV)
851 #define wglQuerySwapGroupNV WGLEW_GET_FUN(__wglewQuerySwapGroupNV)
852 #define wglResetFrameCountNV WGLEW_GET_FUN(__wglewResetFrameCountNV)
853 
854 #define WGLEW_NV_swap_group WGLEW_GET_VAR(__WGLEW_NV_swap_group)
855 
856 #endif /* WGL_NV_swap_group */
857 
858 /* ----------------------- WGL_NV_vertex_array_range ----------------------- */
859 
860 #ifndef WGL_NV_vertex_array_range
861 #define WGL_NV_vertex_array_range 1
862 
863 typedef void * (WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority);
864 typedef void (WINAPI * PFNWGLFREEMEMORYNVPROC) (void *pointer);
865 
866 #define wglAllocateMemoryNV WGLEW_GET_FUN(__wglewAllocateMemoryNV)
867 #define wglFreeMemoryNV WGLEW_GET_FUN(__wglewFreeMemoryNV)
868 
869 #define WGLEW_NV_vertex_array_range WGLEW_GET_VAR(__WGLEW_NV_vertex_array_range)
870 
871 #endif /* WGL_NV_vertex_array_range */
872 
873 /* -------------------------- WGL_NV_video_output -------------------------- */
874 
875 #ifndef WGL_NV_video_output
876 #define WGL_NV_video_output 1
877 
878 #define WGL_BIND_TO_VIDEO_RGB_NV 0x20C0
879 #define WGL_BIND_TO_VIDEO_RGBA_NV 0x20C1
880 #define WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV 0x20C2
881 #define WGL_VIDEO_OUT_COLOR_NV 0x20C3
882 #define WGL_VIDEO_OUT_ALPHA_NV 0x20C4
883 #define WGL_VIDEO_OUT_DEPTH_NV 0x20C5
884 #define WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV 0x20C6
885 #define WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV 0x20C7
886 #define WGL_VIDEO_OUT_FRAME 0x20C8
887 #define WGL_VIDEO_OUT_FIELD_1 0x20C9
888 #define WGL_VIDEO_OUT_FIELD_2 0x20CA
889 #define WGL_VIDEO_OUT_STACKED_FIELDS_1_2 0x20CB
890 #define WGL_VIDEO_OUT_STACKED_FIELDS_2_1 0x20CC
891 
892 DECLARE_HANDLE(HPVIDEODEV);
893 
894 typedef BOOL (WINAPI * PFNWGLBINDVIDEOIMAGENVPROC) (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer);
895 typedef BOOL (WINAPI * PFNWGLGETVIDEODEVICENVPROC) (HDC hDC, int numDevices, HPVIDEODEV* hVideoDevice);
896 typedef BOOL (WINAPI * PFNWGLGETVIDEOINFONVPROC) (HPVIDEODEV hpVideoDevice, unsigned long* pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
897 typedef BOOL (WINAPI * PFNWGLRELEASEVIDEODEVICENVPROC) (HPVIDEODEV hVideoDevice);
898 typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOIMAGENVPROC) (HPBUFFERARB hPbuffer, int iVideoBuffer);
899 typedef BOOL (WINAPI * PFNWGLSENDPBUFFERTOVIDEONVPROC) (HPBUFFERARB hPbuffer, int iBufferType, unsigned long* pulCounterPbuffer, BOOL bBlock);
900 
901 #define wglBindVideoImageNV WGLEW_GET_FUN(__wglewBindVideoImageNV)
902 #define wglGetVideoDeviceNV WGLEW_GET_FUN(__wglewGetVideoDeviceNV)
903 #define wglGetVideoInfoNV WGLEW_GET_FUN(__wglewGetVideoInfoNV)
904 #define wglReleaseVideoDeviceNV WGLEW_GET_FUN(__wglewReleaseVideoDeviceNV)
905 #define wglReleaseVideoImageNV WGLEW_GET_FUN(__wglewReleaseVideoImageNV)
906 #define wglSendPbufferToVideoNV WGLEW_GET_FUN(__wglewSendPbufferToVideoNV)
907 
908 #define WGLEW_NV_video_output WGLEW_GET_VAR(__WGLEW_NV_video_output)
909 
910 #endif /* WGL_NV_video_output */
911 
912 /* -------------------------- WGL_OML_sync_control ------------------------- */
913 
914 #ifndef WGL_OML_sync_control
915 #define WGL_OML_sync_control 1
916 
917 typedef BOOL (WINAPI * PFNWGLGETMSCRATEOMLPROC) (HDC hdc, INT32* numerator, INT32 *denominator);
918 typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64* ust, INT64 *msc, INT64 *sbc);
919 typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
920 typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, INT fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
921 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64* ust, INT64 *msc, INT64 *sbc);
922 typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64* ust, INT64 *msc, INT64 *sbc);
923 
924 #define wglGetMscRateOML WGLEW_GET_FUN(__wglewGetMscRateOML)
925 #define wglGetSyncValuesOML WGLEW_GET_FUN(__wglewGetSyncValuesOML)
926 #define wglSwapBuffersMscOML WGLEW_GET_FUN(__wglewSwapBuffersMscOML)
927 #define wglSwapLayerBuffersMscOML WGLEW_GET_FUN(__wglewSwapLayerBuffersMscOML)
928 #define wglWaitForMscOML WGLEW_GET_FUN(__wglewWaitForMscOML)
929 #define wglWaitForSbcOML WGLEW_GET_FUN(__wglewWaitForSbcOML)
930 
931 #define WGLEW_OML_sync_control WGLEW_GET_VAR(__WGLEW_OML_sync_control)
932 
933 #endif /* WGL_OML_sync_control */
934 
935 /* ------------------------------------------------------------------------- */
936 
937 #ifdef GLEW_MX
938 #define WGLEW_EXPORT
939 #else
940 #define WGLEW_EXPORT GLEWAPI
941 #endif /* GLEW_MX */
942 
943 #ifdef GLEW_MX
944 struct WGLEWContextStruct
945 {
946 #endif /* GLEW_MX */
947 
949 
954 
956 
958 
961 
967 
971 
975 
980 
982 
985 
991 
995 
998 
1001 
1006 
1019 
1024 
1029 
1034 
1040 
1044 
1051 
1054 
1061 
1107 
1108 #ifdef GLEW_MX
1109 }; /* WGLEWContextStruct */
1110 #endif /* GLEW_MX */
1111 
1112 /* ------------------------------------------------------------------------- */
1113 
1114 #ifdef GLEW_MX
1115 
1116 typedef struct WGLEWContextStruct WGLEWContext;
1117 GLEWAPI GLenum wglewContextInit (WGLEWContext* ctx);
1118 GLEWAPI GLboolean wglewContextIsSupported (WGLEWContext* ctx, const char* name);
1119 
1120 #define wglewInit() wglewContextInit(wglewGetContext())
1121 #define wglewIsSupported(x) wglewContextIsSupported(wglewGetContext(), x)
1122 
1123 #define WGLEW_GET_VAR(x) (*(const GLboolean*)&(wglewGetContext()->x))
1124 #define WGLEW_GET_FUN(x) wglewGetContext()->x
1125 
1126 #else /* GLEW_MX */
1127 
1128 #define WGLEW_GET_VAR(x) (*(const GLboolean*)&x)
1129 #define WGLEW_GET_FUN(x) x
1130 
1131 GLEWAPI GLboolean wglewIsSupported (const char* name);
1132 
1133 #endif /* GLEW_MX */
1134 
1135 GLEWAPI GLboolean wglewGetExtension (const char* name);
1136 
1137 #ifdef __cplusplus
1138 }
1139 #endif
1140 
1141 #undef GLEWAPI
1142 
1143 #endif /* __wglew_h__ */
BOOL(WINAPI * PFNWGLGETGAMMATABLEPARAMETERSI3DPROC)(HDC hDC, int iAttribute, int *piValue)
Definition: wglew.h:615
DECLARE_HANDLE(HPBUFFERARB)
WGLEW_EXPORT GLboolean __WGLEW_NV_float_buffer
Definition: wglew.h:1098
WGLEW_EXPORT PFNWGLWAITFORMSCOMLPROC __wglewWaitForMscOML
Definition: wglew.h:1066
HGLRC(WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC)(HDC hDC, HGLRC hShareContext, const int *attribList)
Definition: wglew.h:134
unsigned int GLuint
Definition: glew.h:204
GLuint GLuint GLsizei count
Definition: glext.h:3512
WGLEW_EXPORT GLboolean __WGLEW_EXT_framebuffer_sRGB
Definition: wglew.h:1085
BOOL(WINAPI * PFNWGLBINDVIDEODEVICENVPROC)(HDC hDc, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int *piAttribList)
Definition: wglew.h:794
BOOL(WINAPI * PFNWGLENABLEFRAMELOCKI3DPROC)(VOID)
Definition: wglew.h:701
WGLEW_EXPORT GLboolean __WGLEW_NV_video_output
Definition: wglew.h:1105
WGLEW_EXPORT PFNWGLGETGENLOCKSOURCEDELAYI3DPROC __wglewGetGenlockSourceDelayI3D
Definition: wglew.h:1014
WGLEW_EXPORT PFNWGLGENLOCKSOURCEDELAYI3DPROC __wglewGenlockSourceDelayI3D
Definition: wglew.h:1010
WGLEW_EXPORT PFNWGLGETPIXELFORMATATTRIBFVEXTPROC __wglewGetPixelFormatAttribfvEXT
Definition: wglew.h:993
WGLEW_EXPORT PFNWGLGETPIXELFORMATATTRIBIVEXTPROC __wglewGetPixelFormatAttribivEXT
Definition: wglew.h:994
BOOL(WINAPI * PFNWGLENUMGPUSFROMAFFINITYDCNVPROC)(HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu)
Definition: wglew.h:772
WGLEW_EXPORT PFNWGLISENABLEDGENLOCKI3DPROC __wglewIsEnabledGenlockI3D
Definition: wglew.h:1017
WGLEW_EXPORT GLboolean __WGLEW_3DFX_multisample
Definition: wglew.h:1068
BOOL(WINAPI * PFNWGLSENDPBUFFERTOVIDEONVPROC)(HPBUFFERARB hPbuffer, int iBufferType, unsigned long *pulCounterPbuffer, BOOL bBlock)
Definition: wglew.h:899
WGLEW_EXPORT GLboolean __WGLEW_ARB_pixel_format
Definition: wglew.h:1077
WGLEW_EXPORT PFNWGLENUMERATEVIDEODEVICESNVPROC __wglewEnumerateVideoDevicesNV
Definition: wglew.h:1042
BOOL(WINAPI * PFNWGLGETFRAMEUSAGEI3DPROC)(float *pUsage)
Definition: wglew.h:721
WGLEW_EXPORT GLboolean __WGLEW_NV_vertex_array_range
Definition: wglew.h:1104
WGLEW_EXPORT GLboolean __WGLEW_ARB_multisample
Definition: wglew.h:1075
WGLEW_EXPORT PFNWGLENUMGPUSNVPROC __wglewEnumGpusNV
Definition: wglew.h:1039
BOOL(WINAPI * PFNWGLRESETFRAMECOUNTNVPROC)(HDC hDC)
Definition: wglew.h:845
BOOL(WINAPI * PFNWGLDISABLEGENLOCKI3DPROC)(HDC hDC)
Definition: wglew.h:643
GLsizei const GLvoid * pointer
Definition: glext.h:3702
WGLEW_EXPORT PFNWGLRESETFRAMECOUNTNVPROC __wglewResetFrameCountNV
Definition: wglew.h:1050
WGLEW_EXPORT PFNWGLCREATEIMAGEBUFFERI3DPROC __wglewCreateImageBufferI3D
Definition: wglew.h:1021
WGLEW_EXPORT PFNWGLRELEASEVIDEOIMAGENVPROC __wglewReleaseVideoImageNV
Definition: wglew.h:1059
WGLEW_EXPORT PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC __wglewReleaseImageBufferEventsI3D
Definition: wglew.h:1023
WGLEW_EXPORT PFNWGLQUERYMAXSWAPGROUPSNVPROC __wglewQueryMaxSwapGroupsNV
Definition: wglew.h:1048
GLEWAPI GLboolean wglewGetExtension(const char *name)
WGLEW_EXPORT PFNWGLDESTROYPBUFFERARBPROC __wglewDestroyPbufferARB
Definition: wglew.h:963
WGLEW_EXPORT PFNWGLGETFRAMEUSAGEI3DPROC __wglewGetFrameUsageI3D
Definition: wglew.h:1032
BOOL(WINAPI * PFNWGLWAITFORSBCOMLPROC)(HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc)
Definition: wglew.h:922
WGLEW_EXPORT GLboolean __WGLEW_EXT_extensions_string
Definition: wglew.h:1084
void(WINAPI * PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC)(GLushort id)
Definition: wglew.h:399
WGLEW_EXPORT PFNWGLENDFRAMETRACKINGI3DPROC __wglewEndFrameTrackingI3D
Definition: wglew.h:1031
WGLEW_EXPORT GLboolean __WGLEW_NV_gpu_affinity
Definition: wglew.h:1099
BOOL(WINAPI * PFNWGLDISABLEFRAMELOCKI3DPROC)(VOID)
Definition: wglew.h:700
WGLEW_EXPORT PFNWGLGENLOCKSAMPLERATEI3DPROC __wglewGenlockSampleRateI3D
Definition: wglew.h:1009
WGLEW_EXPORT PFNWGLISENABLEDFRAMELOCKI3DPROC __wglewIsEnabledFrameLockI3D
Definition: wglew.h:1027
WGLEW_EXPORT PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC __wglewAssociateImageBufferEventsI3D
Definition: wglew.h:1020
BOOL(WINAPI * PFNWGLGETPIXELFORMATATTRIBFVARBPROC)(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues)
Definition: wglew.h:284
unsigned short GLushort
Definition: glew.h:211
BOOL(WINAPI * PFNWGLGETGENLOCKSOURCEEDGEI3DPROC)(HDC hDC, UINT *uEdge)
Definition: wglew.h:651
WGLEW_EXPORT PFNWGLGETVIDEOINFONVPROC __wglewGetVideoInfoNV
Definition: wglew.h:1057
GLenum GLsizei GLenum GLenum const GLvoid * table
Definition: glext.h:3513
#define GLEWAPI
Definition: wglew.h:60
WGLEW_EXPORT PFNWGLENUMGPUSFROMAFFINITYDCNVPROC __wglewEnumGpusFromAffinityDCNV
Definition: wglew.h:1038
BOOL(WINAPI * PFNWGLRESTOREBUFFERREGIONARBPROC)(HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc)
Definition: wglew.h:110
WGLEW_EXPORT PFNWGLQUERYFRAMECOUNTNVPROC __wglewQueryFrameCountNV
Definition: wglew.h:1047
WGLEW_EXPORT PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC __wglewSetDigitalVideoParametersI3D
Definition: wglew.h:1000
WGLEW_EXPORT PFNWGLSAVEBUFFERREGIONARBPROC __wglewSaveBufferRegionARB
Definition: wglew.h:953
WGLEW_EXPORT PFNWGLSWAPLAYERBUFFERSMSCOMLPROC __wglewSwapLayerBuffersMscOML
Definition: wglew.h:1065
BOOL(WINAPI * PFNWGLGETGAMMATABLEI3DPROC)(HDC hDC, int iEntries, USHORT *puRed, USHORT *puGreen, USHORT *puBlue)
Definition: wglew.h:614
BOOL(WINAPI * PFNWGLBINDTEXIMAGEARBPROC)(HPBUFFERARB hPbuffer, int iBuffer)
Definition: wglew.h:345
WGLEW_EXPORT PFNWGLBEGINFRAMETRACKINGI3DPROC __wglewBeginFrameTrackingI3D
Definition: wglew.h:1030
BOOL(WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC)(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues)
Definition: wglew.h:285
BOOL(WINAPI * PFNWGLGETGENLOCKSAMPLERATEI3DPROC)(HDC hDC, UINT *uRate)
Definition: wglew.h:649
BOOL(WINAPI * PFNWGLCHOOSEPIXELFORMATEXTPROC)(HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats)
Definition: wglew.h:548
WGLEW_EXPORT PFNWGLGETVIDEODEVICENVPROC __wglewGetVideoDeviceNV
Definition: wglew.h:1056
long INT32
Definition: jmorecfg.h:158
WGLEW_EXPORT PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC __wglewDestroyDisplayColorTableEXT
Definition: wglew.h:978
WGLEW_EXPORT GLboolean __WGLEW_EXT_pixel_format
Definition: wglew.h:1089
WGLEW_EXPORT PFNWGLGETMSCRATEOMLPROC __wglewGetMscRateOML
Definition: wglew.h:1062
WGLEW_EXPORT GLboolean __WGLEW_EXT_pixel_format_packed_float
Definition: wglew.h:1090
WGLEW_EXPORT PFNWGLENABLEFRAMELOCKI3DPROC __wglewEnableFrameLockI3D
Definition: wglew.h:1026
int BOOL
Definition: xstypedefs.h:62
HPBUFFERARB(WINAPI * PFNWGLCREATEPBUFFERARBPROC)(HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList)
Definition: wglew.h:212
#define WGLEW_EXPORT
Definition: wglew.h:940
CHAR DeviceName[32]
Definition: wglew.h:763
BOOL(WINAPI * PFNWGLRELEASEVIDEODEVICENVPROC)(HPVIDEODEV hVideoDevice)
Definition: wglew.h:897
WGLEW_EXPORT GLboolean __WGLEW_OML_sync_control
Definition: wglew.h:1106
GLenum GLsizei width
Definition: glext.h:3513
RECT rcVirtualScreen
Definition: wglew.h:766
WGLEW_EXPORT PFNWGLQUERYSWAPGROUPNVPROC __wglewQuerySwapGroupNV
Definition: wglew.h:1049
float GLfloat
Definition: glew.h:213
WGLEW_EXPORT PFNWGLGETGENLOCKSOURCEI3DPROC __wglewGetGenlockSourceI3D
Definition: wglew.h:1016
WGLEW_EXPORT PFNWGLRESTOREBUFFERREGIONARBPROC __wglewRestoreBufferRegionARB
Definition: wglew.h:952
WGLEW_EXPORT GLboolean __WGLEW_I3D_swap_frame_lock
Definition: wglew.h:1096
WGLEW_EXPORT PFNWGLGETCURRENTREADDCARBPROC __wglewGetCurrentReadDCARB
Definition: wglew.h:959
WGLEW_EXPORT PFNWGLQUERYCURRENTCONTEXTNVPROC __wglewQueryCurrentContextNV
Definition: wglew.h:1043
WGLEW_EXPORT GLboolean __WGLEW_ARB_buffer_region
Definition: wglew.h:1070
const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC)(HDC hdc)
Definition: wglew.h:147
BOOL(WINAPI * PFNWGLQUERYPBUFFERARBPROC)(HPBUFFERARB hPbuffer, int iAttribute, int *piValue)
Definition: wglew.h:215
WGLEW_EXPORT GLboolean __WGLEW_EXT_depth_float
Definition: wglew.h:1082
HDC(WINAPI * PFNWGLGETPBUFFERDCARBPROC)(HPBUFFERARB hPbuffer)
Definition: wglew.h:214
WGLEW_EXPORT PFNWGLGETEXTENSIONSSTRINGARBPROC __wglewGetExtensionsStringARB
Definition: wglew.h:957
WGLEW_EXPORT PFNWGLALLOCATEMEMORYNVPROC __wglewAllocateMemoryNV
Definition: wglew.h:1052
GLboolean(WINAPI * PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC)(GLushort id)
Definition: wglew.h:398
WGLEW_EXPORT PFNWGLFREEMEMORYNVPROC __wglewFreeMemoryNV
Definition: wglew.h:1053
HDC(WINAPI * PFNWGLCREATEAFFINITYDCNVPROC)(const HGPUNV *phGpuList)
Definition: wglew.h:769
BOOL(WINAPI * PFNWGLGETGENLOCKSOURCEI3DPROC)(HDC hDC, UINT *uSource)
Definition: wglew.h:652
BOOL(WINAPI * PFNWGLGETVIDEODEVICENVPROC)(HDC hDC, int numDevices, HPVIDEODEV *hVideoDevice)
Definition: wglew.h:895
BOOL(WINAPI * PFNWGLQUERYFRAMELOCKMASTERI3DPROC)(BOOL *pFlag)
Definition: wglew.h:703
INT64(WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC)(HDC hdc, INT fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder)
Definition: wglew.h:920
WGLEW_EXPORT PFNWGLDISABLEFRAMELOCKI3DPROC __wglewDisableFrameLockI3D
Definition: wglew.h:1025
WGLEW_EXPORT PFNWGLCHOOSEPIXELFORMATEXTPROC __wglewChoosePixelFormatEXT
Definition: wglew.h:992
WGLEW_EXPORT PFNWGLGETPBUFFERDCEXTPROC __wglewGetPbufferDCEXT
Definition: wglew.h:988
BOOL(WINAPI * PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC)(HDC hdc, HANDLE *pEvent, LPVOID *pAddress, DWORD *pSize, UINT count)
Definition: wglew.h:681
WGLEW_EXPORT GLboolean __WGLEW_EXT_make_current_read
Definition: wglew.h:1086
WGLEW_EXPORT PFNWGLBINDSWAPBARRIERNVPROC __wglewBindSwapBarrierNV
Definition: wglew.h:1045
HDC(WINAPI * PFNWGLGETCURRENTREADDCEXTPROC)(VOID)
Definition: wglew.h:442
WGLEW_EXPORT PFNWGLQUERYPBUFFEREXTPROC __wglewQueryPbufferEXT
Definition: wglew.h:989
HPBUFFEREXT(WINAPI * PFNWGLCREATEPBUFFEREXTPROC)(HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList)
Definition: wglew.h:481
BOOL(WINAPI * PFNWGLGETSYNCVALUESOMLPROC)(HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc)
Definition: wglew.h:918
WGLEW_EXPORT GLboolean __WGLEW_I3D_swap_frame_usage
Definition: wglew.h:1097
WGLEW_EXPORT PFNWGLCREATECONTEXTATTRIBSARBPROC __wglewCreateContextAttribsARB
Definition: wglew.h:955
WGLEW_EXPORT GLboolean __WGLEW_EXT_multisample
Definition: wglew.h:1087
WGLEW_EXPORT GLboolean __WGLEW_ARB_pbuffer
Definition: wglew.h:1076
WGLEW_EXPORT PFNWGLWAITFORSBCOMLPROC __wglewWaitForSbcOML
Definition: wglew.h:1067
INT64(WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC)(HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder)
Definition: wglew.h:919
BOOL(WINAPI * PFNWGLSETSTEREOEMITTERSTATE3DLPROC)(HDC hDC, UINT uState)
Definition: wglew.h:90
WGLEW_EXPORT PFNWGLRELEASETEXIMAGEARBPROC __wglewReleaseTexImageARB
Definition: wglew.h:973
WGLEW_EXPORT PFNWGLGENLOCKSOURCEEDGEI3DPROC __wglewGenlockSourceEdgeI3D
Definition: wglew.h:1011
WGLEW_EXPORT PFNWGLRELEASEVIDEODEVICENVPROC __wglewReleaseVideoDeviceNV
Definition: wglew.h:1058
WGLEW_EXPORT PFNWGLGETGAMMATABLEPARAMETERSI3DPROC __wglewGetGammaTableParametersI3D
Definition: wglew.h:1003
WGLEW_EXPORT GLboolean __WGLEW_EXT_pbuffer
Definition: wglew.h:1088
BOOL(WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC)(HDC hDC, UINT uDelay)
Definition: wglew.h:646
BOOL(WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC)(HDC hDrawDC, HDC hReadDC, HGLRC hglrc)
Definition: wglew.h:175
WGLEW_EXPORT GLboolean __WGLEW_ARB_framebuffer_sRGB
Definition: wglew.h:1073
WGLEW_EXPORT PFNWGLJOINSWAPGROUPNVPROC __wglewJoinSwapGroupNV
Definition: wglew.h:1046
BOOL(WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC)(HDC hDrawDC, HDC hReadDC, HGLRC hglrc)
Definition: wglew.h:443
WGLEW_EXPORT PFNWGLRELEASEPBUFFERDCEXTPROC __wglewReleasePbufferDCEXT
Definition: wglew.h:990
BOOL(WINAPI * PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC)(HDC hDC, UINT *uMaxLineDelay, UINT *uMaxPixelDelay)
Definition: wglew.h:654
BOOL(WINAPI * PFNWGLQUERYMAXSWAPGROUPSNVPROC)(HDC hDC, GLuint *maxGroups, GLuint *maxBarriers)
Definition: wglew.h:843
WGLEW_EXPORT GLboolean __WGLEW_NV_present_video
Definition: wglew.h:1100
BOOL(WINAPI * PFNWGLGENLOCKSAMPLERATEI3DPROC)(HDC hDC, UINT uRate)
Definition: wglew.h:645
LPVOID(WINAPI * PFNWGLCREATEIMAGEBUFFERI3DPROC)(HDC hDC, DWORD dwSize, UINT uFlags)
Definition: wglew.h:682
BOOL(WINAPI * PFNWGLGETPIXELFORMATATTRIBIVEXTPROC)(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, int *piValues)
Definition: wglew.h:550
BOOL(WINAPI * PFNWGLBINDSWAPBARRIERNVPROC)(GLuint group, GLuint barrier)
Definition: wglew.h:840
WGLEW_EXPORT GLboolean __WGLEW_ATI_render_texture_rectangle
Definition: wglew.h:1081
BOOL(WINAPI * PFNWGLENABLEGENLOCKI3DPROC)(HDC hDC)
Definition: wglew.h:644
WGLEW_EXPORT PFNWGLGETGAMMATABLEI3DPROC __wglewGetGammaTableI3D
Definition: wglew.h:1002
BOOL(WINAPI * PFNWGLGENLOCKSOURCEEDGEI3DPROC)(HDC hDC, UINT uEdge)
Definition: wglew.h:647
int(WINAPI * PFNWGLGETSWAPINTERVALEXTPROC)(void)
Definition: wglew.h:576
int(WINAPI * PFNWGLRELEASEPBUFFERDCARBPROC)(HPBUFFERARB hPbuffer, HDC hDC)
Definition: wglew.h:216
CHAR DeviceString[128]
Definition: wglew.h:764
BOOL(WINAPI * PFNWGLWAITFORMSCOMLPROC)(HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc)
Definition: wglew.h:921
WGLEW_EXPORT GLboolean __WGLEW_ARB_make_current_read
Definition: wglew.h:1074
WGLEW_EXPORT PFNWGLDESTROYPBUFFEREXTPROC __wglewDestroyPbufferEXT
Definition: wglew.h:987
WGLEW_EXPORT GLboolean __WGLEW_ATI_pixel_format_float
Definition: wglew.h:1080
WGLEW_EXPORT PFNWGLGETEXTENSIONSSTRINGEXTPROC __wglewGetExtensionsStringEXT
Definition: wglew.h:981
BOOL(WINAPI * PFNWGLDESTROYIMAGEBUFFERI3DPROC)(HDC hDC, LPVOID pAddress)
Definition: wglew.h:683
WGLEW_EXPORT PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC __wglewQueryGenlockMaxSourceDelayI3D
Definition: wglew.h:1018
BOOL(WINAPI * PFNWGLBEGINFRAMETRACKINGI3DPROC)(void)
Definition: wglew.h:719
BOOL(WINAPI * PFNWGLSETGAMMATABLEI3DPROC)(HDC hDC, int iEntries, const USHORT *puRed, const USHORT *puGreen, const USHORT *puBlue)
Definition: wglew.h:616
int(WINAPI * PFNWGLRELEASEPBUFFERDCEXTPROC)(HPBUFFEREXT hPbuffer, HDC hDC)
Definition: wglew.h:485
WGLEW_EXPORT PFNWGLGETCURRENTREADDCEXTPROC __wglewGetCurrentReadDCEXT
Definition: wglew.h:983
WGLEW_EXPORT PFNWGLCREATEBUFFERREGIONARBPROC __wglewCreateBufferRegionARB
Definition: wglew.h:950
BOOL(WINAPI * PFNWGLSETGAMMATABLEPARAMETERSI3DPROC)(HDC hDC, int iAttribute, const int *piValue)
Definition: wglew.h:617
GLboolean(WINAPI * PFNWGLBINDDISPLAYCOLORTABLEEXTPROC)(GLushort id)
Definition: wglew.h:397
BOOL(WINAPI * PFNWGLGETVIDEOINFONVPROC)(HPVIDEODEV hpVideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo)
Definition: wglew.h:896
unsigned int GLenum
Definition: glew.h:202
DWORD cb
Definition: wglew.h:762
BOOL(WINAPI * PFNWGLISENABLEDGENLOCKI3DPROC)(HDC hDC, BOOL *pFlag)
Definition: wglew.h:653
WGLEW_EXPORT PFNWGLSETSTEREOEMITTERSTATE3DLPROC __wglewSetStereoEmitterState3DL
Definition: wglew.h:948
WGLEW_EXPORT PFNWGLBINDVIDEODEVICENVPROC __wglewBindVideoDeviceNV
Definition: wglew.h:1041
WGLEW_EXPORT PFNWGLDELETEBUFFERREGIONARBPROC __wglewDeleteBufferRegionARB
Definition: wglew.h:951
WGLEW_EXPORT GLboolean __WGLEW_ARB_create_context
Definition: wglew.h:1071
WGLEW_EXPORT PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC __wglewGetDigitalVideoParametersI3D
Definition: wglew.h:999
WGLEW_EXPORT PFNWGLGETPBUFFERDCARBPROC __wglewGetPbufferDCARB
Definition: wglew.h:964
struct _GPU_DEVICE GPU_DEVICE
WGLEW_EXPORT PFNWGLBINDTEXIMAGEARBPROC __wglewBindTexImageARB
Definition: wglew.h:972
WGLEW_EXPORT PFNWGLCREATEPBUFFERARBPROC __wglewCreatePbufferARB
Definition: wglew.h:962
WGLEW_EXPORT PFNWGLENUMGPUDEVICESNVPROC __wglewEnumGpuDevicesNV
Definition: wglew.h:1037
BOOL(WINAPI * PFNWGLQUERYCURRENTCONTEXTNVPROC)(int iAttribute, int *piValue)
Definition: wglew.h:796
WGLEW_EXPORT PFNWGLBINDVIDEOIMAGENVPROC __wglewBindVideoImageNV
Definition: wglew.h:1055
WGLEW_EXPORT PFNWGLRELEASEPBUFFERDCARBPROC __wglewReleasePbufferDCARB
Definition: wglew.h:966
BOOL(WINAPI * PFNWGLGENLOCKSOURCEI3DPROC)(HDC hDC, UINT uSource)
Definition: wglew.h:648
WGLEW_EXPORT PFNWGLQUERYFRAMELOCKMASTERI3DPROC __wglewQueryFrameLockMasterI3D
Definition: wglew.h:1028
DWORD Flags
Definition: wglew.h:765
BOOL(WINAPI * PFNWGLRELEASEVIDEOIMAGENVPROC)(HPBUFFERARB hPbuffer, int iVideoBuffer)
Definition: wglew.h:898
BOOL(WINAPI * PFNWGLDELETEDCNVPROC)(HDC hdc)
Definition: wglew.h:770
BOOL(WINAPI * PFNWGLSWAPINTERVALEXTPROC)(int interval)
Definition: wglew.h:577
WGLEW_EXPORT PFNWGLSETPBUFFERATTRIBARBPROC __wglewSetPbufferAttribARB
Definition: wglew.h:974
BOOL(WINAPI * PFNWGLBINDVIDEOIMAGENVPROC)(HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer)
Definition: wglew.h:894
void *(WINAPI * PFNWGLALLOCATEMEMORYNVPROC)(GLsizei size, GLfloat readFrequency, GLfloat writeFrequency, GLfloat priority)
Definition: wglew.h:863
GLuint id
Definition: glext.h:3770
BOOL(WINAPI * PFNWGLQUERYFRAMETRACKINGI3DPROC)(DWORD *pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage)
Definition: wglew.h:722
WGLEW_EXPORT GLboolean __WGLEW_ARB_pixel_format_float
Definition: wglew.h:1078
GLuint GLsizei GLsizei * length
Definition: glext.h:3900
BOOL(WINAPI * PFNWGLSAVEBUFFERREGIONARBPROC)(HANDLE hRegion, int x, int y, int width, int height)
Definition: wglew.h:111
WGLEW_EXPORT PFNWGLQUERYFRAMETRACKINGI3DPROC __wglewQueryFrameTrackingI3D
Definition: wglew.h:1033
WGLEW_EXPORT PFNWGLSENDPBUFFERTOVIDEONVPROC __wglewSendPbufferToVideoNV
Definition: wglew.h:1060
GLuint const GLchar * name
Definition: glext.h:3891
WGLEW_EXPORT GLboolean __WGLEW_I3D_digital_video_control
Definition: wglew.h:1092
WGLEW_EXPORT GLboolean __WGLEW_EXT_display_color_table
Definition: wglew.h:1083
WGLEW_EXPORT PFNWGLMAKECONTEXTCURRENTARBPROC __wglewMakeContextCurrentARB
Definition: wglew.h:960
WGLEW_EXPORT PFNWGLCREATEAFFINITYDCNVPROC __wglewCreateAffinityDCNV
Definition: wglew.h:1035
WGLEW_EXPORT PFNWGLDELETEDCNVPROC __wglewDeleteDCNV
Definition: wglew.h:1036
WGLEW_EXPORT GLboolean __WGLEW_3DL_stereo_control
Definition: wglew.h:1069
WGLEW_EXPORT PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC __wglewCreateDisplayColorTableEXT
Definition: wglew.h:977
GLenum GLint GLint y
Definition: glext.h:3516
BOOL(WINAPI * PFNWGLENUMGPUDEVICESNVPROC)(HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice)
Definition: wglew.h:771
WGLEW_EXPORT GLboolean __WGLEW_I3D_genlock
Definition: wglew.h:1094
BOOL(WINAPI * PFNWGLENUMGPUSNVPROC)(UINT iGpuIndex, HGPUNV *phGpu)
Definition: wglew.h:773
WGLEW_EXPORT GLboolean __WGLEW_I3D_gamma
Definition: wglew.h:1093
HDC(WINAPI * PFNWGLGETPBUFFERDCEXTPROC)(HPBUFFEREXT hPbuffer)
Definition: wglew.h:483
GLboolean(WINAPI * PFNWGLLOADDISPLAYCOLORTABLEEXTPROC)(GLushort *table, GLuint length)
Definition: wglew.h:400
WGLEW_EXPORT PFNWGLMAKECONTEXTCURRENTEXTPROC __wglewMakeContextCurrentEXT
Definition: wglew.h:984
BOOL(WINAPI * PFNWGLGETMSCRATEOMLPROC)(HDC hdc, INT32 *numerator, INT32 *denominator)
Definition: wglew.h:917
typedef void(APIENTRYP PFNGLBLENDCOLORPROC)(GLclampf red
struct _GPU_DEVICE * PGPU_DEVICE
WGLEW_EXPORT GLboolean __WGLEW_ARB_extensions_string
Definition: wglew.h:1072
BOOL(WINAPI * PFNWGLRELEASETEXIMAGEARBPROC)(HPBUFFERARB hPbuffer, int iBuffer)
Definition: wglew.h:346
WGLEW_EXPORT PFNWGLGETGENLOCKSAMPLERATEI3DPROC __wglewGetGenlockSampleRateI3D
Definition: wglew.h:1013
WGLEW_EXPORT PFNWGLGETSYNCVALUESOMLPROC __wglewGetSyncValuesOML
Definition: wglew.h:1063
WGLEW_EXPORT PFNWGLCREATEPBUFFEREXTPROC __wglewCreatePbufferEXT
Definition: wglew.h:986
BOOL(WINAPI * PFNWGLSETPBUFFERATTRIBARBPROC)(HPBUFFERARB hPbuffer, const int *piAttribList)
Definition: wglew.h:347
BOOL(WINAPI * PFNWGLJOINSWAPGROUPNVPROC)(HDC hDC, GLuint group)
Definition: wglew.h:841
GLsizeiptr size
Definition: glext.h:3779
BOOL(WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC)(HDC hDC, UINT *uDelay)
Definition: wglew.h:650
HANDLE(WINAPI * PFNWGLCREATEBUFFERREGIONARBPROC)(HDC hDC, int iLayerPlane, UINT uType)
Definition: wglew.h:108
BOOL(WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC)(HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats)
Definition: wglew.h:283
int(WINAPI * PFNWGLENUMERATEVIDEODEVICESNVPROC)(HDC hDc, HVIDEOOUTPUTDEVICENV *phDeviceList)
Definition: wglew.h:795
VOID(WINAPI * PFNWGLDELETEBUFFERREGIONARBPROC)(HANDLE hRegion)
Definition: wglew.h:109
WGLEW_EXPORT PFNWGLGETSWAPINTERVALEXTPROC __wglewGetSwapIntervalEXT
Definition: wglew.h:996
WGLEW_EXPORT PFNWGLGETPIXELFORMATATTRIBIVARBPROC __wglewGetPixelFormatAttribivARB
Definition: wglew.h:970
WGLEW_EXPORT PFNWGLQUERYPBUFFERARBPROC __wglewQueryPbufferARB
Definition: wglew.h:965
GLenum GLint x
Definition: glext.h:3516
WGLEW_EXPORT PFNWGLDISABLEGENLOCKI3DPROC __wglewDisableGenlockI3D
Definition: wglew.h:1007
BOOL(WINAPI * PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC)(HDC hDC, int iAttribute, const int *piValue)
Definition: wglew.h:597
GLenum GLsizei GLsizei height
Definition: glext.h:3523
WGLEW_EXPORT PFNWGLCHOOSEPIXELFORMATARBPROC __wglewChoosePixelFormatARB
Definition: wglew.h:968
WGLEW_EXPORT PFNWGLBINDDISPLAYCOLORTABLEEXTPROC __wglewBindDisplayColorTableEXT
Definition: wglew.h:976
WGLEW_EXPORT PFNWGLGETGENLOCKSOURCEEDGEI3DPROC __wglewGetGenlockSourceEdgeI3D
Definition: wglew.h:1015
WGLEW_EXPORT GLboolean __WGLEW_NV_swap_group
Definition: wglew.h:1103
WGLEW_EXPORT GLboolean __WGLEW_I3D_image_buffer
Definition: wglew.h:1095
WGLEW_EXPORT PFNWGLENABLEGENLOCKI3DPROC __wglewEnableGenlockI3D
Definition: wglew.h:1008
WGLEW_EXPORT PFNWGLSETGAMMATABLEPARAMETERSI3DPROC __wglewSetGammaTableParametersI3D
Definition: wglew.h:1005
BOOL(WINAPI * PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC)(HDC hdc, LPVOID *pAddress, UINT count)
Definition: wglew.h:684
BOOL(WINAPI * PFNWGLQUERYPBUFFEREXTPROC)(HPBUFFEREXT hPbuffer, int iAttribute, int *piValue)
Definition: wglew.h:484
unsigned char GLboolean
Definition: glew.h:207
WGLEW_EXPORT PFNWGLGENLOCKSOURCEI3DPROC __wglewGenlockSourceI3D
Definition: wglew.h:1012
BOOL(WINAPI * PFNWGLDESTROYPBUFFERARBPROC)(HPBUFFERARB hPbuffer)
Definition: wglew.h:213
GLEWAPI GLboolean wglewIsSupported(const char *name)
BOOL(WINAPI * PFNWGLGETPIXELFORMATATTRIBFVEXTPROC)(HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, FLOAT *pfValues)
Definition: wglew.h:549
BOOL(WINAPI * PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC)(HDC hDC, int iAttribute, int *piValue)
Definition: wglew.h:596
WGLEW_EXPORT GLboolean __WGLEW_ARB_render_texture
Definition: wglew.h:1079
void(WINAPI * PFNWGLFREEMEMORYNVPROC)(void *pointer)
Definition: wglew.h:864
WGLEW_EXPORT PFNWGLGETPIXELFORMATATTRIBFVARBPROC __wglewGetPixelFormatAttribfvARB
Definition: wglew.h:969
int GLsizei
Definition: glew.h:206
WGLEW_EXPORT PFNWGLLOADDISPLAYCOLORTABLEEXTPROC __wglewLoadDisplayColorTableEXT
Definition: wglew.h:979
BOOL(WINAPI * PFNWGLQUERYSWAPGROUPNVPROC)(HDC hDC, GLuint *group)
Definition: wglew.h:844
HDC(WINAPI * PFNWGLGETCURRENTREADDCARBPROC)(VOID)
Definition: wglew.h:174
BOOL(WINAPI * PFNWGLISENABLEDFRAMELOCKI3DPROC)(BOOL *pFlag)
Definition: wglew.h:702
BOOL(WINAPI * PFNWGLENDFRAMETRACKINGI3DPROC)(void)
Definition: wglew.h:720
WGLEW_EXPORT PFNWGLSWAPBUFFERSMSCOMLPROC __wglewSwapBuffersMscOML
Definition: wglew.h:1064
const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC)(void)
Definition: wglew.h:416
WGLEW_EXPORT PFNWGLSETGAMMATABLEI3DPROC __wglewSetGammaTableI3D
Definition: wglew.h:1004
BOOL(WINAPI * PFNWGLDESTROYPBUFFEREXTPROC)(HPBUFFEREXT hPbuffer)
Definition: wglew.h:482
WGLEW_EXPORT PFNWGLDESTROYIMAGEBUFFERI3DPROC __wglewDestroyImageBufferI3D
Definition: wglew.h:1022
WGLEW_EXPORT GLboolean __WGLEW_EXT_swap_control
Definition: wglew.h:1091
BOOL(WINAPI * PFNWGLQUERYFRAMECOUNTNVPROC)(HDC hDC, GLuint *count)
Definition: wglew.h:842
WGLEW_EXPORT GLboolean __WGLEW_NV_render_depth_texture
Definition: wglew.h:1101
WGLEW_EXPORT PFNWGLSWAPINTERVALEXTPROC __wglewSwapIntervalEXT
Definition: wglew.h:997
WGLEW_EXPORT GLboolean __WGLEW_NV_render_texture_rectangle
Definition: wglew.h:1102



Page generated by Doxygen 1.8.14 for MRPT 1.5.6 Git: 4c65e8431 Tue Apr 24 08:18:17 2018 +0200 at lun oct 28 01:35:26 CET 2019