Home | History | Annotate | Download | only in GL
      1 #ifndef __wglext_h_
      2 #define __wglext_h_ 1
      3 
      4 #ifdef __cplusplus
      5 extern "C" {
      6 #endif
      7 
      8 /*
      9 ** Copyright (c) 2013-2017 The Khronos Group Inc.
     10 **
     11 ** Permission is hereby granted, free of charge, to any person obtaining a
     12 ** copy of this software and/or associated documentation files (the
     13 ** "Materials"), to deal in the Materials without restriction, including
     14 ** without limitation the rights to use, copy, modify, merge, publish,
     15 ** distribute, sublicense, and/or sell copies of the Materials, and to
     16 ** permit persons to whom the Materials are furnished to do so, subject to
     17 ** the following conditions:
     18 **
     19 ** The above copyright notice and this permission notice shall be included
     20 ** in all copies or substantial portions of the Materials.
     21 **
     22 ** THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     23 ** EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     24 ** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
     25 ** IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
     26 ** CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
     27 ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
     28 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
     29 */
     30 /*
     31 ** This header is generated from the Khronos OpenGL / OpenGL ES XML
     32 ** API Registry. The current version of the Registry, generator scripts
     33 ** used to make the header, and the header can be found at
     34 **   https://github.com/KhronosGroup/OpenGL-Registry
     35 */
     36 
     37 #if defined(_WIN32) && !defined(APIENTRY) && !defined(__CYGWIN__) && !defined(__SCITECH_SNAP__)
     38 #define WIN32_LEAN_AND_MEAN 1
     39 #include <windows.h>
     40 #endif
     41 
     42 #define WGL_WGLEXT_VERSION 20170817
     43 
     44 /* Generated C header for:
     45  * API: wgl
     46  * Versions considered: .*
     47  * Versions emitted: _nomatch_^
     48  * Default extensions included: wgl
     49  * Additional extensions included: _nomatch_^
     50  * Extensions removed: _nomatch_^
     51  */
     52 
     53 #ifndef WGL_ARB_buffer_region
     54 #define WGL_ARB_buffer_region 1
     55 #define WGL_FRONT_COLOR_BUFFER_BIT_ARB    0x00000001
     56 #define WGL_BACK_COLOR_BUFFER_BIT_ARB     0x00000002
     57 #define WGL_DEPTH_BUFFER_BIT_ARB          0x00000004
     58 #define WGL_STENCIL_BUFFER_BIT_ARB        0x00000008
     59 typedef HANDLE (WINAPI * PFNWGLCREATEBUFFERREGIONARBPROC) (HDC hDC, int iLayerPlane, UINT uType);
     60 typedef VOID (WINAPI * PFNWGLDELETEBUFFERREGIONARBPROC) (HANDLE hRegion);
     61 typedef BOOL (WINAPI * PFNWGLSAVEBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height);
     62 typedef BOOL (WINAPI * PFNWGLRESTOREBUFFERREGIONARBPROC) (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc);
     63 #ifdef WGL_WGLEXT_PROTOTYPES
     64 HANDLE WINAPI wglCreateBufferRegionARB (HDC hDC, int iLayerPlane, UINT uType);
     65 VOID WINAPI wglDeleteBufferRegionARB (HANDLE hRegion);
     66 BOOL WINAPI wglSaveBufferRegionARB (HANDLE hRegion, int x, int y, int width, int height);
     67 BOOL WINAPI wglRestoreBufferRegionARB (HANDLE hRegion, int x, int y, int width, int height, int xSrc, int ySrc);
     68 #endif
     69 #endif /* WGL_ARB_buffer_region */
     70 
     71 #ifndef WGL_ARB_context_flush_control
     72 #define WGL_ARB_context_flush_control 1
     73 #define WGL_CONTEXT_RELEASE_BEHAVIOR_ARB  0x2097
     74 #define WGL_CONTEXT_RELEASE_BEHAVIOR_NONE_ARB 0
     75 #define WGL_CONTEXT_RELEASE_BEHAVIOR_FLUSH_ARB 0x2098
     76 #endif /* WGL_ARB_context_flush_control */
     77 
     78 #ifndef WGL_ARB_create_context
     79 #define WGL_ARB_create_context 1
     80 #define WGL_CONTEXT_DEBUG_BIT_ARB         0x00000001
     81 #define WGL_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB 0x00000002
     82 #define WGL_CONTEXT_MAJOR_VERSION_ARB     0x2091
     83 #define WGL_CONTEXT_MINOR_VERSION_ARB     0x2092
     84 #define WGL_CONTEXT_LAYER_PLANE_ARB       0x2093
     85 #define WGL_CONTEXT_FLAGS_ARB             0x2094
     86 #define ERROR_INVALID_VERSION_ARB         0x2095
     87 typedef HGLRC (WINAPI * PFNWGLCREATECONTEXTATTRIBSARBPROC) (HDC hDC, HGLRC hShareContext, const int *attribList);
     88 #ifdef WGL_WGLEXT_PROTOTYPES
     89 HGLRC WINAPI wglCreateContextAttribsARB (HDC hDC, HGLRC hShareContext, const int *attribList);
     90 #endif
     91 #endif /* WGL_ARB_create_context */
     92 
     93 #ifndef WGL_ARB_create_context_no_error
     94 #define WGL_ARB_create_context_no_error 1
     95 #define WGL_CONTEXT_OPENGL_NO_ERROR_ARB   0x31B3
     96 #endif /* WGL_ARB_create_context_no_error */
     97 
     98 #ifndef WGL_ARB_create_context_profile
     99 #define WGL_ARB_create_context_profile 1
    100 #define WGL_CONTEXT_PROFILE_MASK_ARB      0x9126
    101 #define WGL_CONTEXT_CORE_PROFILE_BIT_ARB  0x00000001
    102 #define WGL_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB 0x00000002
    103 #define ERROR_INVALID_PROFILE_ARB         0x2096
    104 #endif /* WGL_ARB_create_context_profile */
    105 
    106 #ifndef WGL_ARB_create_context_robustness
    107 #define WGL_ARB_create_context_robustness 1
    108 #define WGL_CONTEXT_ROBUST_ACCESS_BIT_ARB 0x00000004
    109 #define WGL_LOSE_CONTEXT_ON_RESET_ARB     0x8252
    110 #define WGL_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB 0x8256
    111 #define WGL_NO_RESET_NOTIFICATION_ARB     0x8261
    112 #endif /* WGL_ARB_create_context_robustness */
    113 
    114 #ifndef WGL_ARB_extensions_string
    115 #define WGL_ARB_extensions_string 1
    116 typedef const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGARBPROC) (HDC hdc);
    117 #ifdef WGL_WGLEXT_PROTOTYPES
    118 const char *WINAPI wglGetExtensionsStringARB (HDC hdc);
    119 #endif
    120 #endif /* WGL_ARB_extensions_string */
    121 
    122 #ifndef WGL_ARB_framebuffer_sRGB
    123 #define WGL_ARB_framebuffer_sRGB 1
    124 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_ARB  0x20A9
    125 #endif /* WGL_ARB_framebuffer_sRGB */
    126 
    127 #ifndef WGL_ARB_make_current_read
    128 #define WGL_ARB_make_current_read 1
    129 #define ERROR_INVALID_PIXEL_TYPE_ARB      0x2043
    130 #define ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB 0x2054
    131 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTARBPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    132 typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCARBPROC) (void);
    133 #ifdef WGL_WGLEXT_PROTOTYPES
    134 BOOL WINAPI wglMakeContextCurrentARB (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    135 HDC WINAPI wglGetCurrentReadDCARB (void);
    136 #endif
    137 #endif /* WGL_ARB_make_current_read */
    138 
    139 #ifndef WGL_ARB_multisample
    140 #define WGL_ARB_multisample 1
    141 #define WGL_SAMPLE_BUFFERS_ARB            0x2041
    142 #define WGL_SAMPLES_ARB                   0x2042
    143 #endif /* WGL_ARB_multisample */
    144 
    145 #ifndef WGL_ARB_pbuffer
    146 #define WGL_ARB_pbuffer 1
    147 DECLARE_HANDLE(HPBUFFERARB);
    148 #define WGL_DRAW_TO_PBUFFER_ARB           0x202D
    149 #define WGL_MAX_PBUFFER_PIXELS_ARB        0x202E
    150 #define WGL_MAX_PBUFFER_WIDTH_ARB         0x202F
    151 #define WGL_MAX_PBUFFER_HEIGHT_ARB        0x2030
    152 #define WGL_PBUFFER_LARGEST_ARB           0x2033
    153 #define WGL_PBUFFER_WIDTH_ARB             0x2034
    154 #define WGL_PBUFFER_HEIGHT_ARB            0x2035
    155 #define WGL_PBUFFER_LOST_ARB              0x2036
    156 typedef HPBUFFERARB (WINAPI * PFNWGLCREATEPBUFFERARBPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
    157 typedef HDC (WINAPI * PFNWGLGETPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer);
    158 typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCARBPROC) (HPBUFFERARB hPbuffer, HDC hDC);
    159 typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFERARBPROC) (HPBUFFERARB hPbuffer);
    160 typedef BOOL (WINAPI * PFNWGLQUERYPBUFFERARBPROC) (HPBUFFERARB hPbuffer, int iAttribute, int *piValue);
    161 #ifdef WGL_WGLEXT_PROTOTYPES
    162 HPBUFFERARB WINAPI wglCreatePbufferARB (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
    163 HDC WINAPI wglGetPbufferDCARB (HPBUFFERARB hPbuffer);
    164 int WINAPI wglReleasePbufferDCARB (HPBUFFERARB hPbuffer, HDC hDC);
    165 BOOL WINAPI wglDestroyPbufferARB (HPBUFFERARB hPbuffer);
    166 BOOL WINAPI wglQueryPbufferARB (HPBUFFERARB hPbuffer, int iAttribute, int *piValue);
    167 #endif
    168 #endif /* WGL_ARB_pbuffer */
    169 
    170 #ifndef WGL_ARB_pixel_format
    171 #define WGL_ARB_pixel_format 1
    172 #define WGL_NUMBER_PIXEL_FORMATS_ARB      0x2000
    173 #define WGL_DRAW_TO_WINDOW_ARB            0x2001
    174 #define WGL_DRAW_TO_BITMAP_ARB            0x2002
    175 #define WGL_ACCELERATION_ARB              0x2003
    176 #define WGL_NEED_PALETTE_ARB              0x2004
    177 #define WGL_NEED_SYSTEM_PALETTE_ARB       0x2005
    178 #define WGL_SWAP_LAYER_BUFFERS_ARB        0x2006
    179 #define WGL_SWAP_METHOD_ARB               0x2007
    180 #define WGL_NUMBER_OVERLAYS_ARB           0x2008
    181 #define WGL_NUMBER_UNDERLAYS_ARB          0x2009
    182 #define WGL_TRANSPARENT_ARB               0x200A
    183 #define WGL_TRANSPARENT_RED_VALUE_ARB     0x2037
    184 #define WGL_TRANSPARENT_GREEN_VALUE_ARB   0x2038
    185 #define WGL_TRANSPARENT_BLUE_VALUE_ARB    0x2039
    186 #define WGL_TRANSPARENT_ALPHA_VALUE_ARB   0x203A
    187 #define WGL_TRANSPARENT_INDEX_VALUE_ARB   0x203B
    188 #define WGL_SHARE_DEPTH_ARB               0x200C
    189 #define WGL_SHARE_STENCIL_ARB             0x200D
    190 #define WGL_SHARE_ACCUM_ARB               0x200E
    191 #define WGL_SUPPORT_GDI_ARB               0x200F
    192 #define WGL_SUPPORT_OPENGL_ARB            0x2010
    193 #define WGL_DOUBLE_BUFFER_ARB             0x2011
    194 #define WGL_STEREO_ARB                    0x2012
    195 #define WGL_PIXEL_TYPE_ARB                0x2013
    196 #define WGL_COLOR_BITS_ARB                0x2014
    197 #define WGL_RED_BITS_ARB                  0x2015
    198 #define WGL_RED_SHIFT_ARB                 0x2016
    199 #define WGL_GREEN_BITS_ARB                0x2017
    200 #define WGL_GREEN_SHIFT_ARB               0x2018
    201 #define WGL_BLUE_BITS_ARB                 0x2019
    202 #define WGL_BLUE_SHIFT_ARB                0x201A
    203 #define WGL_ALPHA_BITS_ARB                0x201B
    204 #define WGL_ALPHA_SHIFT_ARB               0x201C
    205 #define WGL_ACCUM_BITS_ARB                0x201D
    206 #define WGL_ACCUM_RED_BITS_ARB            0x201E
    207 #define WGL_ACCUM_GREEN_BITS_ARB          0x201F
    208 #define WGL_ACCUM_BLUE_BITS_ARB           0x2020
    209 #define WGL_ACCUM_ALPHA_BITS_ARB          0x2021
    210 #define WGL_DEPTH_BITS_ARB                0x2022
    211 #define WGL_STENCIL_BITS_ARB              0x2023
    212 #define WGL_AUX_BUFFERS_ARB               0x2024
    213 #define WGL_NO_ACCELERATION_ARB           0x2025
    214 #define WGL_GENERIC_ACCELERATION_ARB      0x2026
    215 #define WGL_FULL_ACCELERATION_ARB         0x2027
    216 #define WGL_SWAP_EXCHANGE_ARB             0x2028
    217 #define WGL_SWAP_COPY_ARB                 0x2029
    218 #define WGL_SWAP_UNDEFINED_ARB            0x202A
    219 #define WGL_TYPE_RGBA_ARB                 0x202B
    220 #define WGL_TYPE_COLORINDEX_ARB           0x202C
    221 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues);
    222 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVARBPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues);
    223 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATARBPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
    224 #ifdef WGL_WGLEXT_PROTOTYPES
    225 BOOL WINAPI wglGetPixelFormatAttribivARB (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, int *piValues);
    226 BOOL WINAPI wglGetPixelFormatAttribfvARB (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, const int *piAttributes, FLOAT *pfValues);
    227 BOOL WINAPI wglChoosePixelFormatARB (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
    228 #endif
    229 #endif /* WGL_ARB_pixel_format */
    230 
    231 #ifndef WGL_ARB_pixel_format_float
    232 #define WGL_ARB_pixel_format_float 1
    233 #define WGL_TYPE_RGBA_FLOAT_ARB           0x21A0
    234 #endif /* WGL_ARB_pixel_format_float */
    235 
    236 #ifndef WGL_ARB_render_texture
    237 #define WGL_ARB_render_texture 1
    238 #define WGL_BIND_TO_TEXTURE_RGB_ARB       0x2070
    239 #define WGL_BIND_TO_TEXTURE_RGBA_ARB      0x2071
    240 #define WGL_TEXTURE_FORMAT_ARB            0x2072
    241 #define WGL_TEXTURE_TARGET_ARB            0x2073
    242 #define WGL_MIPMAP_TEXTURE_ARB            0x2074
    243 #define WGL_TEXTURE_RGB_ARB               0x2075
    244 #define WGL_TEXTURE_RGBA_ARB              0x2076
    245 #define WGL_NO_TEXTURE_ARB                0x2077
    246 #define WGL_TEXTURE_CUBE_MAP_ARB          0x2078
    247 #define WGL_TEXTURE_1D_ARB                0x2079
    248 #define WGL_TEXTURE_2D_ARB                0x207A
    249 #define WGL_MIPMAP_LEVEL_ARB              0x207B
    250 #define WGL_CUBE_MAP_FACE_ARB             0x207C
    251 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB 0x207D
    252 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB 0x207E
    253 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB 0x207F
    254 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB 0x2080
    255 #define WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB 0x2081
    256 #define WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB 0x2082
    257 #define WGL_FRONT_LEFT_ARB                0x2083
    258 #define WGL_FRONT_RIGHT_ARB               0x2084
    259 #define WGL_BACK_LEFT_ARB                 0x2085
    260 #define WGL_BACK_RIGHT_ARB                0x2086
    261 #define WGL_AUX0_ARB                      0x2087
    262 #define WGL_AUX1_ARB                      0x2088
    263 #define WGL_AUX2_ARB                      0x2089
    264 #define WGL_AUX3_ARB                      0x208A
    265 #define WGL_AUX4_ARB                      0x208B
    266 #define WGL_AUX5_ARB                      0x208C
    267 #define WGL_AUX6_ARB                      0x208D
    268 #define WGL_AUX7_ARB                      0x208E
    269 #define WGL_AUX8_ARB                      0x208F
    270 #define WGL_AUX9_ARB                      0x2090
    271 typedef BOOL (WINAPI * PFNWGLBINDTEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
    272 typedef BOOL (WINAPI * PFNWGLRELEASETEXIMAGEARBPROC) (HPBUFFERARB hPbuffer, int iBuffer);
    273 typedef BOOL (WINAPI * PFNWGLSETPBUFFERATTRIBARBPROC) (HPBUFFERARB hPbuffer, const int *piAttribList);
    274 #ifdef WGL_WGLEXT_PROTOTYPES
    275 BOOL WINAPI wglBindTexImageARB (HPBUFFERARB hPbuffer, int iBuffer);
    276 BOOL WINAPI wglReleaseTexImageARB (HPBUFFERARB hPbuffer, int iBuffer);
    277 BOOL WINAPI wglSetPbufferAttribARB (HPBUFFERARB hPbuffer, const int *piAttribList);
    278 #endif
    279 #endif /* WGL_ARB_render_texture */
    280 
    281 #ifndef WGL_ARB_robustness_application_isolation
    282 #define WGL_ARB_robustness_application_isolation 1
    283 #define WGL_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008
    284 #endif /* WGL_ARB_robustness_application_isolation */
    285 
    286 #ifndef WGL_ARB_robustness_share_group_isolation
    287 #define WGL_ARB_robustness_share_group_isolation 1
    288 #endif /* WGL_ARB_robustness_share_group_isolation */
    289 
    290 #ifndef WGL_3DFX_multisample
    291 #define WGL_3DFX_multisample 1
    292 #define WGL_SAMPLE_BUFFERS_3DFX           0x2060
    293 #define WGL_SAMPLES_3DFX                  0x2061
    294 #endif /* WGL_3DFX_multisample */
    295 
    296 #ifndef WGL_3DL_stereo_control
    297 #define WGL_3DL_stereo_control 1
    298 #define WGL_STEREO_EMITTER_ENABLE_3DL     0x2055
    299 #define WGL_STEREO_EMITTER_DISABLE_3DL    0x2056
    300 #define WGL_STEREO_POLARITY_NORMAL_3DL    0x2057
    301 #define WGL_STEREO_POLARITY_INVERT_3DL    0x2058
    302 typedef BOOL (WINAPI * PFNWGLSETSTEREOEMITTERSTATE3DLPROC) (HDC hDC, UINT uState);
    303 #ifdef WGL_WGLEXT_PROTOTYPES
    304 BOOL WINAPI wglSetStereoEmitterState3DL (HDC hDC, UINT uState);
    305 #endif
    306 #endif /* WGL_3DL_stereo_control */
    307 
    308 #ifndef WGL_AMD_gpu_association
    309 #define WGL_AMD_gpu_association 1
    310 #define WGL_GPU_VENDOR_AMD                0x1F00
    311 #define WGL_GPU_RENDERER_STRING_AMD       0x1F01
    312 #define WGL_GPU_OPENGL_VERSION_STRING_AMD 0x1F02
    313 #define WGL_GPU_FASTEST_TARGET_GPUS_AMD   0x21A2
    314 #define WGL_GPU_RAM_AMD                   0x21A3
    315 #define WGL_GPU_CLOCK_AMD                 0x21A4
    316 #define WGL_GPU_NUM_PIPES_AMD             0x21A5
    317 #define WGL_GPU_NUM_SIMD_AMD              0x21A6
    318 #define WGL_GPU_NUM_RB_AMD                0x21A7
    319 #define WGL_GPU_NUM_SPI_AMD               0x21A8
    320 typedef UINT (WINAPI * PFNWGLGETGPUIDSAMDPROC) (UINT maxCount, UINT *ids);
    321 typedef INT (WINAPI * PFNWGLGETGPUINFOAMDPROC) (UINT id, int property, GLenum dataType, UINT size, void *data);
    322 typedef UINT (WINAPI * PFNWGLGETCONTEXTGPUIDAMDPROC) (HGLRC hglrc);
    323 typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTAMDPROC) (UINT id);
    324 typedef HGLRC (WINAPI * PFNWGLCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (UINT id, HGLRC hShareContext, const int *attribList);
    325 typedef BOOL (WINAPI * PFNWGLDELETEASSOCIATEDCONTEXTAMDPROC) (HGLRC hglrc);
    326 typedef BOOL (WINAPI * PFNWGLMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (HGLRC hglrc);
    327 typedef HGLRC (WINAPI * PFNWGLGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void);
    328 typedef VOID (WINAPI * PFNWGLBLITCONTEXTFRAMEBUFFERAMDPROC) (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
    329 #ifdef WGL_WGLEXT_PROTOTYPES
    330 UINT WINAPI wglGetGPUIDsAMD (UINT maxCount, UINT *ids);
    331 INT WINAPI wglGetGPUInfoAMD (UINT id, int property, GLenum dataType, UINT size, void *data);
    332 UINT WINAPI wglGetContextGPUIDAMD (HGLRC hglrc);
    333 HGLRC WINAPI wglCreateAssociatedContextAMD (UINT id);
    334 HGLRC WINAPI wglCreateAssociatedContextAttribsAMD (UINT id, HGLRC hShareContext, const int *attribList);
    335 BOOL WINAPI wglDeleteAssociatedContextAMD (HGLRC hglrc);
    336 BOOL WINAPI wglMakeAssociatedContextCurrentAMD (HGLRC hglrc);
    337 HGLRC WINAPI wglGetCurrentAssociatedContextAMD (void);
    338 VOID WINAPI wglBlitContextFramebufferAMD (HGLRC dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
    339 #endif
    340 #endif /* WGL_AMD_gpu_association */
    341 
    342 #ifndef WGL_ATI_pixel_format_float
    343 #define WGL_ATI_pixel_format_float 1
    344 #define WGL_TYPE_RGBA_FLOAT_ATI           0x21A0
    345 #endif /* WGL_ATI_pixel_format_float */
    346 
    347 #ifndef WGL_EXT_colorspace
    348 #define WGL_EXT_colorspace 1
    349 #define WGL_COLORSPACE_EXT                0x3087
    350 #define WGL_COLORSPACE_SRGB_EXT           0x3089
    351 #define WGL_COLORSPACE_LINEAR_EXT         0x308A
    352 #endif /* WGL_EXT_colorspace */
    353 
    354 #ifndef WGL_EXT_create_context_es2_profile
    355 #define WGL_EXT_create_context_es2_profile 1
    356 #define WGL_CONTEXT_ES2_PROFILE_BIT_EXT   0x00000004
    357 #endif /* WGL_EXT_create_context_es2_profile */
    358 
    359 #ifndef WGL_EXT_create_context_es_profile
    360 #define WGL_EXT_create_context_es_profile 1
    361 #define WGL_CONTEXT_ES_PROFILE_BIT_EXT    0x00000004
    362 #endif /* WGL_EXT_create_context_es_profile */
    363 
    364 #ifndef WGL_EXT_depth_float
    365 #define WGL_EXT_depth_float 1
    366 #define WGL_DEPTH_FLOAT_EXT               0x2040
    367 #endif /* WGL_EXT_depth_float */
    368 
    369 #ifndef WGL_EXT_display_color_table
    370 #define WGL_EXT_display_color_table 1
    371 typedef GLboolean (WINAPI * PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC) (GLushort id);
    372 typedef GLboolean (WINAPI * PFNWGLLOADDISPLAYCOLORTABLEEXTPROC) (const GLushort *table, GLuint length);
    373 typedef GLboolean (WINAPI * PFNWGLBINDDISPLAYCOLORTABLEEXTPROC) (GLushort id);
    374 typedef VOID (WINAPI * PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC) (GLushort id);
    375 #ifdef WGL_WGLEXT_PROTOTYPES
    376 GLboolean WINAPI wglCreateDisplayColorTableEXT (GLushort id);
    377 GLboolean WINAPI wglLoadDisplayColorTableEXT (const GLushort *table, GLuint length);
    378 GLboolean WINAPI wglBindDisplayColorTableEXT (GLushort id);
    379 VOID WINAPI wglDestroyDisplayColorTableEXT (GLushort id);
    380 #endif
    381 #endif /* WGL_EXT_display_color_table */
    382 
    383 #ifndef WGL_EXT_extensions_string
    384 #define WGL_EXT_extensions_string 1
    385 typedef const char *(WINAPI * PFNWGLGETEXTENSIONSSTRINGEXTPROC) (void);
    386 #ifdef WGL_WGLEXT_PROTOTYPES
    387 const char *WINAPI wglGetExtensionsStringEXT (void);
    388 #endif
    389 #endif /* WGL_EXT_extensions_string */
    390 
    391 #ifndef WGL_EXT_framebuffer_sRGB
    392 #define WGL_EXT_framebuffer_sRGB 1
    393 #define WGL_FRAMEBUFFER_SRGB_CAPABLE_EXT  0x20A9
    394 #endif /* WGL_EXT_framebuffer_sRGB */
    395 
    396 #ifndef WGL_EXT_make_current_read
    397 #define WGL_EXT_make_current_read 1
    398 #define ERROR_INVALID_PIXEL_TYPE_EXT      0x2043
    399 typedef BOOL (WINAPI * PFNWGLMAKECONTEXTCURRENTEXTPROC) (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    400 typedef HDC (WINAPI * PFNWGLGETCURRENTREADDCEXTPROC) (void);
    401 #ifdef WGL_WGLEXT_PROTOTYPES
    402 BOOL WINAPI wglMakeContextCurrentEXT (HDC hDrawDC, HDC hReadDC, HGLRC hglrc);
    403 HDC WINAPI wglGetCurrentReadDCEXT (void);
    404 #endif
    405 #endif /* WGL_EXT_make_current_read */
    406 
    407 #ifndef WGL_EXT_multisample
    408 #define WGL_EXT_multisample 1
    409 #define WGL_SAMPLE_BUFFERS_EXT            0x2041
    410 #define WGL_SAMPLES_EXT                   0x2042
    411 #endif /* WGL_EXT_multisample */
    412 
    413 #ifndef WGL_EXT_pbuffer
    414 #define WGL_EXT_pbuffer 1
    415 DECLARE_HANDLE(HPBUFFEREXT);
    416 #define WGL_DRAW_TO_PBUFFER_EXT           0x202D
    417 #define WGL_MAX_PBUFFER_PIXELS_EXT        0x202E
    418 #define WGL_MAX_PBUFFER_WIDTH_EXT         0x202F
    419 #define WGL_MAX_PBUFFER_HEIGHT_EXT        0x2030
    420 #define WGL_OPTIMAL_PBUFFER_WIDTH_EXT     0x2031
    421 #define WGL_OPTIMAL_PBUFFER_HEIGHT_EXT    0x2032
    422 #define WGL_PBUFFER_LARGEST_EXT           0x2033
    423 #define WGL_PBUFFER_WIDTH_EXT             0x2034
    424 #define WGL_PBUFFER_HEIGHT_EXT            0x2035
    425 typedef HPBUFFEREXT (WINAPI * PFNWGLCREATEPBUFFEREXTPROC) (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
    426 typedef HDC (WINAPI * PFNWGLGETPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer);
    427 typedef int (WINAPI * PFNWGLRELEASEPBUFFERDCEXTPROC) (HPBUFFEREXT hPbuffer, HDC hDC);
    428 typedef BOOL (WINAPI * PFNWGLDESTROYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer);
    429 typedef BOOL (WINAPI * PFNWGLQUERYPBUFFEREXTPROC) (HPBUFFEREXT hPbuffer, int iAttribute, int *piValue);
    430 #ifdef WGL_WGLEXT_PROTOTYPES
    431 HPBUFFEREXT WINAPI wglCreatePbufferEXT (HDC hDC, int iPixelFormat, int iWidth, int iHeight, const int *piAttribList);
    432 HDC WINAPI wglGetPbufferDCEXT (HPBUFFEREXT hPbuffer);
    433 int WINAPI wglReleasePbufferDCEXT (HPBUFFEREXT hPbuffer, HDC hDC);
    434 BOOL WINAPI wglDestroyPbufferEXT (HPBUFFEREXT hPbuffer);
    435 BOOL WINAPI wglQueryPbufferEXT (HPBUFFEREXT hPbuffer, int iAttribute, int *piValue);
    436 #endif
    437 #endif /* WGL_EXT_pbuffer */
    438 
    439 #ifndef WGL_EXT_pixel_format
    440 #define WGL_EXT_pixel_format 1
    441 #define WGL_NUMBER_PIXEL_FORMATS_EXT      0x2000
    442 #define WGL_DRAW_TO_WINDOW_EXT            0x2001
    443 #define WGL_DRAW_TO_BITMAP_EXT            0x2002
    444 #define WGL_ACCELERATION_EXT              0x2003
    445 #define WGL_NEED_PALETTE_EXT              0x2004
    446 #define WGL_NEED_SYSTEM_PALETTE_EXT       0x2005
    447 #define WGL_SWAP_LAYER_BUFFERS_EXT        0x2006
    448 #define WGL_SWAP_METHOD_EXT               0x2007
    449 #define WGL_NUMBER_OVERLAYS_EXT           0x2008
    450 #define WGL_NUMBER_UNDERLAYS_EXT          0x2009
    451 #define WGL_TRANSPARENT_EXT               0x200A
    452 #define WGL_TRANSPARENT_VALUE_EXT         0x200B
    453 #define WGL_SHARE_DEPTH_EXT               0x200C
    454 #define WGL_SHARE_STENCIL_EXT             0x200D
    455 #define WGL_SHARE_ACCUM_EXT               0x200E
    456 #define WGL_SUPPORT_GDI_EXT               0x200F
    457 #define WGL_SUPPORT_OPENGL_EXT            0x2010
    458 #define WGL_DOUBLE_BUFFER_EXT             0x2011
    459 #define WGL_STEREO_EXT                    0x2012
    460 #define WGL_PIXEL_TYPE_EXT                0x2013
    461 #define WGL_COLOR_BITS_EXT                0x2014
    462 #define WGL_RED_BITS_EXT                  0x2015
    463 #define WGL_RED_SHIFT_EXT                 0x2016
    464 #define WGL_GREEN_BITS_EXT                0x2017
    465 #define WGL_GREEN_SHIFT_EXT               0x2018
    466 #define WGL_BLUE_BITS_EXT                 0x2019
    467 #define WGL_BLUE_SHIFT_EXT                0x201A
    468 #define WGL_ALPHA_BITS_EXT                0x201B
    469 #define WGL_ALPHA_SHIFT_EXT               0x201C
    470 #define WGL_ACCUM_BITS_EXT                0x201D
    471 #define WGL_ACCUM_RED_BITS_EXT            0x201E
    472 #define WGL_ACCUM_GREEN_BITS_EXT          0x201F
    473 #define WGL_ACCUM_BLUE_BITS_EXT           0x2020
    474 #define WGL_ACCUM_ALPHA_BITS_EXT          0x2021
    475 #define WGL_DEPTH_BITS_EXT                0x2022
    476 #define WGL_STENCIL_BITS_EXT              0x2023
    477 #define WGL_AUX_BUFFERS_EXT               0x2024
    478 #define WGL_NO_ACCELERATION_EXT           0x2025
    479 #define WGL_GENERIC_ACCELERATION_EXT      0x2026
    480 #define WGL_FULL_ACCELERATION_EXT         0x2027
    481 #define WGL_SWAP_EXCHANGE_EXT             0x2028
    482 #define WGL_SWAP_COPY_EXT                 0x2029
    483 #define WGL_SWAP_UNDEFINED_EXT            0x202A
    484 #define WGL_TYPE_RGBA_EXT                 0x202B
    485 #define WGL_TYPE_COLORINDEX_EXT           0x202C
    486 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBIVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, int *piValues);
    487 typedef BOOL (WINAPI * PFNWGLGETPIXELFORMATATTRIBFVEXTPROC) (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, FLOAT *pfValues);
    488 typedef BOOL (WINAPI * PFNWGLCHOOSEPIXELFORMATEXTPROC) (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
    489 #ifdef WGL_WGLEXT_PROTOTYPES
    490 BOOL WINAPI wglGetPixelFormatAttribivEXT (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, int *piValues);
    491 BOOL WINAPI wglGetPixelFormatAttribfvEXT (HDC hdc, int iPixelFormat, int iLayerPlane, UINT nAttributes, int *piAttributes, FLOAT *pfValues);
    492 BOOL WINAPI wglChoosePixelFormatEXT (HDC hdc, const int *piAttribIList, const FLOAT *pfAttribFList, UINT nMaxFormats, int *piFormats, UINT *nNumFormats);
    493 #endif
    494 #endif /* WGL_EXT_pixel_format */
    495 
    496 #ifndef WGL_EXT_pixel_format_packed_float
    497 #define WGL_EXT_pixel_format_packed_float 1
    498 #define WGL_TYPE_RGBA_UNSIGNED_FLOAT_EXT  0x20A8
    499 #endif /* WGL_EXT_pixel_format_packed_float */
    500 
    501 #ifndef WGL_EXT_swap_control
    502 #define WGL_EXT_swap_control 1
    503 typedef BOOL (WINAPI * PFNWGLSWAPINTERVALEXTPROC) (int interval);
    504 typedef int (WINAPI * PFNWGLGETSWAPINTERVALEXTPROC) (void);
    505 #ifdef WGL_WGLEXT_PROTOTYPES
    506 BOOL WINAPI wglSwapIntervalEXT (int interval);
    507 int WINAPI wglGetSwapIntervalEXT (void);
    508 #endif
    509 #endif /* WGL_EXT_swap_control */
    510 
    511 #ifndef WGL_EXT_swap_control_tear
    512 #define WGL_EXT_swap_control_tear 1
    513 #endif /* WGL_EXT_swap_control_tear */
    514 
    515 #ifndef WGL_I3D_digital_video_control
    516 #define WGL_I3D_digital_video_control 1
    517 #define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D 0x2050
    518 #define WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D 0x2051
    519 #define WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D 0x2052
    520 #define WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D 0x2053
    521 typedef BOOL (WINAPI * PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int *piValue);
    522 typedef BOOL (WINAPI * PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int *piValue);
    523 #ifdef WGL_WGLEXT_PROTOTYPES
    524 BOOL WINAPI wglGetDigitalVideoParametersI3D (HDC hDC, int iAttribute, int *piValue);
    525 BOOL WINAPI wglSetDigitalVideoParametersI3D (HDC hDC, int iAttribute, const int *piValue);
    526 #endif
    527 #endif /* WGL_I3D_digital_video_control */
    528 
    529 #ifndef WGL_I3D_gamma
    530 #define WGL_I3D_gamma 1
    531 #define WGL_GAMMA_TABLE_SIZE_I3D          0x204E
    532 #define WGL_GAMMA_EXCLUDE_DESKTOP_I3D     0x204F
    533 typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, int *piValue);
    534 typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEPARAMETERSI3DPROC) (HDC hDC, int iAttribute, const int *piValue);
    535 typedef BOOL (WINAPI * PFNWGLGETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, USHORT *puRed, USHORT *puGreen, USHORT *puBlue);
    536 typedef BOOL (WINAPI * PFNWGLSETGAMMATABLEI3DPROC) (HDC hDC, int iEntries, const USHORT *puRed, const USHORT *puGreen, const USHORT *puBlue);
    537 #ifdef WGL_WGLEXT_PROTOTYPES
    538 BOOL WINAPI wglGetGammaTableParametersI3D (HDC hDC, int iAttribute, int *piValue);
    539 BOOL WINAPI wglSetGammaTableParametersI3D (HDC hDC, int iAttribute, const int *piValue);
    540 BOOL WINAPI wglGetGammaTableI3D (HDC hDC, int iEntries, USHORT *puRed, USHORT *puGreen, USHORT *puBlue);
    541 BOOL WINAPI wglSetGammaTableI3D (HDC hDC, int iEntries, const USHORT *puRed, const USHORT *puGreen, const USHORT *puBlue);
    542 #endif
    543 #endif /* WGL_I3D_gamma */
    544 
    545 #ifndef WGL_I3D_genlock
    546 #define WGL_I3D_genlock 1
    547 #define WGL_GENLOCK_SOURCE_MULTIVIEW_I3D  0x2044
    548 #define WGL_GENLOCK_SOURCE_EXTERNAL_SYNC_I3D 0x2045
    549 #define WGL_GENLOCK_SOURCE_EXTERNAL_FIELD_I3D 0x2046
    550 #define WGL_GENLOCK_SOURCE_EXTERNAL_TTL_I3D 0x2047
    551 #define WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D 0x2048
    552 #define WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D 0x2049
    553 #define WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D 0x204A
    554 #define WGL_GENLOCK_SOURCE_EDGE_RISING_I3D 0x204B
    555 #define WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D  0x204C
    556 typedef BOOL (WINAPI * PFNWGLENABLEGENLOCKI3DPROC) (HDC hDC);
    557 typedef BOOL (WINAPI * PFNWGLDISABLEGENLOCKI3DPROC) (HDC hDC);
    558 typedef BOOL (WINAPI * PFNWGLISENABLEDGENLOCKI3DPROC) (HDC hDC, BOOL *pFlag);
    559 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEI3DPROC) (HDC hDC, UINT uSource);
    560 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEI3DPROC) (HDC hDC, UINT *uSource);
    561 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT uEdge);
    562 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEEDGEI3DPROC) (HDC hDC, UINT *uEdge);
    563 typedef BOOL (WINAPI * PFNWGLGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT uRate);
    564 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSAMPLERATEI3DPROC) (HDC hDC, UINT *uRate);
    565 typedef BOOL (WINAPI * PFNWGLGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT uDelay);
    566 typedef BOOL (WINAPI * PFNWGLGETGENLOCKSOURCEDELAYI3DPROC) (HDC hDC, UINT *uDelay);
    567 typedef BOOL (WINAPI * PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC) (HDC hDC, UINT *uMaxLineDelay, UINT *uMaxPixelDelay);
    568 #ifdef WGL_WGLEXT_PROTOTYPES
    569 BOOL WINAPI wglEnableGenlockI3D (HDC hDC);
    570 BOOL WINAPI wglDisableGenlockI3D (HDC hDC);
    571 BOOL WINAPI wglIsEnabledGenlockI3D (HDC hDC, BOOL *pFlag);
    572 BOOL WINAPI wglGenlockSourceI3D (HDC hDC, UINT uSource);
    573 BOOL WINAPI wglGetGenlockSourceI3D (HDC hDC, UINT *uSource);
    574 BOOL WINAPI wglGenlockSourceEdgeI3D (HDC hDC, UINT uEdge);
    575 BOOL WINAPI wglGetGenlockSourceEdgeI3D (HDC hDC, UINT *uEdge);
    576 BOOL WINAPI wglGenlockSampleRateI3D (HDC hDC, UINT uRate);
    577 BOOL WINAPI wglGetGenlockSampleRateI3D (HDC hDC, UINT *uRate);
    578 BOOL WINAPI wglGenlockSourceDelayI3D (HDC hDC, UINT uDelay);
    579 BOOL WINAPI wglGetGenlockSourceDelayI3D (HDC hDC, UINT *uDelay);
    580 BOOL WINAPI wglQueryGenlockMaxSourceDelayI3D (HDC hDC, UINT *uMaxLineDelay, UINT *uMaxPixelDelay);
    581 #endif
    582 #endif /* WGL_I3D_genlock */
    583 
    584 #ifndef WGL_I3D_image_buffer
    585 #define WGL_I3D_image_buffer 1
    586 #define WGL_IMAGE_BUFFER_MIN_ACCESS_I3D   0x00000001
    587 #define WGL_IMAGE_BUFFER_LOCK_I3D         0x00000002
    588 typedef LPVOID (WINAPI * PFNWGLCREATEIMAGEBUFFERI3DPROC) (HDC hDC, DWORD dwSize, UINT uFlags);
    589 typedef BOOL (WINAPI * PFNWGLDESTROYIMAGEBUFFERI3DPROC) (HDC hDC, LPVOID pAddress);
    590 typedef BOOL (WINAPI * PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC) (HDC hDC, const HANDLE *pEvent, const LPVOID *pAddress, const DWORD *pSize, UINT count);
    591 typedef BOOL (WINAPI * PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC) (HDC hDC, const LPVOID *pAddress, UINT count);
    592 #ifdef WGL_WGLEXT_PROTOTYPES
    593 LPVOID WINAPI wglCreateImageBufferI3D (HDC hDC, DWORD dwSize, UINT uFlags);
    594 BOOL WINAPI wglDestroyImageBufferI3D (HDC hDC, LPVOID pAddress);
    595 BOOL WINAPI wglAssociateImageBufferEventsI3D (HDC hDC, const HANDLE *pEvent, const LPVOID *pAddress, const DWORD *pSize, UINT count);
    596 BOOL WINAPI wglReleaseImageBufferEventsI3D (HDC hDC, const LPVOID *pAddress, UINT count);
    597 #endif
    598 #endif /* WGL_I3D_image_buffer */
    599 
    600 #ifndef WGL_I3D_swap_frame_lock
    601 #define WGL_I3D_swap_frame_lock 1
    602 typedef BOOL (WINAPI * PFNWGLENABLEFRAMELOCKI3DPROC) (void);
    603 typedef BOOL (WINAPI * PFNWGLDISABLEFRAMELOCKI3DPROC) (void);
    604 typedef BOOL (WINAPI * PFNWGLISENABLEDFRAMELOCKI3DPROC) (BOOL *pFlag);
    605 typedef BOOL (WINAPI * PFNWGLQUERYFRAMELOCKMASTERI3DPROC) (BOOL *pFlag);
    606 #ifdef WGL_WGLEXT_PROTOTYPES
    607 BOOL WINAPI wglEnableFrameLockI3D (void);
    608 BOOL WINAPI wglDisableFrameLockI3D (void);
    609 BOOL WINAPI wglIsEnabledFrameLockI3D (BOOL *pFlag);
    610 BOOL WINAPI wglQueryFrameLockMasterI3D (BOOL *pFlag);
    611 #endif
    612 #endif /* WGL_I3D_swap_frame_lock */
    613 
    614 #ifndef WGL_I3D_swap_frame_usage
    615 #define WGL_I3D_swap_frame_usage 1
    616 typedef BOOL (WINAPI * PFNWGLGETFRAMEUSAGEI3DPROC) (float *pUsage);
    617 typedef BOOL (WINAPI * PFNWGLBEGINFRAMETRACKINGI3DPROC) (void);
    618 typedef BOOL (WINAPI * PFNWGLENDFRAMETRACKINGI3DPROC) (void);
    619 typedef BOOL (WINAPI * PFNWGLQUERYFRAMETRACKINGI3DPROC) (DWORD *pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage);
    620 #ifdef WGL_WGLEXT_PROTOTYPES
    621 BOOL WINAPI wglGetFrameUsageI3D (float *pUsage);
    622 BOOL WINAPI wglBeginFrameTrackingI3D (void);
    623 BOOL WINAPI wglEndFrameTrackingI3D (void);
    624 BOOL WINAPI wglQueryFrameTrackingI3D (DWORD *pFrameCount, DWORD *pMissedFrames, float *pLastMissedUsage);
    625 #endif
    626 #endif /* WGL_I3D_swap_frame_usage */
    627 
    628 #ifndef WGL_NV_DX_interop
    629 #define WGL_NV_DX_interop 1
    630 #define WGL_ACCESS_READ_ONLY_NV           0x00000000
    631 #define WGL_ACCESS_READ_WRITE_NV          0x00000001
    632 #define WGL_ACCESS_WRITE_DISCARD_NV       0x00000002
    633 typedef BOOL (WINAPI * PFNWGLDXSETRESOURCESHAREHANDLENVPROC) (void *dxObject, HANDLE shareHandle);
    634 typedef HANDLE (WINAPI * PFNWGLDXOPENDEVICENVPROC) (void *dxDevice);
    635 typedef BOOL (WINAPI * PFNWGLDXCLOSEDEVICENVPROC) (HANDLE hDevice);
    636 typedef HANDLE (WINAPI * PFNWGLDXREGISTEROBJECTNVPROC) (HANDLE hDevice, void *dxObject, GLuint name, GLenum type, GLenum access);
    637 typedef BOOL (WINAPI * PFNWGLDXUNREGISTEROBJECTNVPROC) (HANDLE hDevice, HANDLE hObject);
    638 typedef BOOL (WINAPI * PFNWGLDXOBJECTACCESSNVPROC) (HANDLE hObject, GLenum access);
    639 typedef BOOL (WINAPI * PFNWGLDXLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE *hObjects);
    640 typedef BOOL (WINAPI * PFNWGLDXUNLOCKOBJECTSNVPROC) (HANDLE hDevice, GLint count, HANDLE *hObjects);
    641 #ifdef WGL_WGLEXT_PROTOTYPES
    642 BOOL WINAPI wglDXSetResourceShareHandleNV (void *dxObject, HANDLE shareHandle);
    643 HANDLE WINAPI wglDXOpenDeviceNV (void *dxDevice);
    644 BOOL WINAPI wglDXCloseDeviceNV (HANDLE hDevice);
    645 HANDLE WINAPI wglDXRegisterObjectNV (HANDLE hDevice, void *dxObject, GLuint name, GLenum type, GLenum access);
    646 BOOL WINAPI wglDXUnregisterObjectNV (HANDLE hDevice, HANDLE hObject);
    647 BOOL WINAPI wglDXObjectAccessNV (HANDLE hObject, GLenum access);
    648 BOOL WINAPI wglDXLockObjectsNV (HANDLE hDevice, GLint count, HANDLE *hObjects);
    649 BOOL WINAPI wglDXUnlockObjectsNV (HANDLE hDevice, GLint count, HANDLE *hObjects);
    650 #endif
    651 #endif /* WGL_NV_DX_interop */
    652 
    653 #ifndef WGL_NV_DX_interop2
    654 #define WGL_NV_DX_interop2 1
    655 #endif /* WGL_NV_DX_interop2 */
    656 
    657 #ifndef WGL_NV_copy_image
    658 #define WGL_NV_copy_image 1
    659 typedef BOOL (WINAPI * PFNWGLCOPYIMAGESUBDATANVPROC) (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
    660 #ifdef WGL_WGLEXT_PROTOTYPES
    661 BOOL WINAPI wglCopyImageSubDataNV (HGLRC hSrcRC, GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, HGLRC hDstRC, GLuint dstName, GLenum dstTarget, GLint dstLevel, GLint dstX, GLint dstY, GLint dstZ, GLsizei width, GLsizei height, GLsizei depth);
    662 #endif
    663 #endif /* WGL_NV_copy_image */
    664 
    665 #ifndef WGL_NV_delay_before_swap
    666 #define WGL_NV_delay_before_swap 1
    667 typedef BOOL (WINAPI * PFNWGLDELAYBEFORESWAPNVPROC) (HDC hDC, GLfloat seconds);
    668 #ifdef WGL_WGLEXT_PROTOTYPES
    669 BOOL WINAPI wglDelayBeforeSwapNV (HDC hDC, GLfloat seconds);
    670 #endif
    671 #endif /* WGL_NV_delay_before_swap */
    672 
    673 #ifndef WGL_NV_float_buffer
    674 #define WGL_NV_float_buffer 1
    675 #define WGL_FLOAT_COMPONENTS_NV           0x20B0
    676 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV 0x20B1
    677 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV 0x20B2
    678 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV 0x20B3
    679 #define WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV 0x20B4
    680 #define WGL_TEXTURE_FLOAT_R_NV            0x20B5
    681 #define WGL_TEXTURE_FLOAT_RG_NV           0x20B6
    682 #define WGL_TEXTURE_FLOAT_RGB_NV          0x20B7
    683 #define WGL_TEXTURE_FLOAT_RGBA_NV         0x20B8
    684 #endif /* WGL_NV_float_buffer */
    685 
    686 #ifndef WGL_NV_gpu_affinity
    687 #define WGL_NV_gpu_affinity 1
    688 DECLARE_HANDLE(HGPUNV);
    689 struct _GPU_DEVICE {
    690     DWORD  cb;
    691     CHAR   DeviceName[32];
    692     CHAR   DeviceString[128];
    693     DWORD  Flags;
    694     RECT   rcVirtualScreen;
    695 };
    696 typedef struct _GPU_DEVICE *PGPU_DEVICE;
    697 #define ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV 0x20D0
    698 #define ERROR_MISSING_AFFINITY_MASK_NV    0x20D1
    699 typedef BOOL (WINAPI * PFNWGLENUMGPUSNVPROC) (UINT iGpuIndex, HGPUNV *phGpu);
    700 typedef BOOL (WINAPI * PFNWGLENUMGPUDEVICESNVPROC) (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice);
    701 typedef HDC (WINAPI * PFNWGLCREATEAFFINITYDCNVPROC) (const HGPUNV *phGpuList);
    702 typedef BOOL (WINAPI * PFNWGLENUMGPUSFROMAFFINITYDCNVPROC) (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu);
    703 typedef BOOL (WINAPI * PFNWGLDELETEDCNVPROC) (HDC hdc);
    704 #ifdef WGL_WGLEXT_PROTOTYPES
    705 BOOL WINAPI wglEnumGpusNV (UINT iGpuIndex, HGPUNV *phGpu);
    706 BOOL WINAPI wglEnumGpuDevicesNV (HGPUNV hGpu, UINT iDeviceIndex, PGPU_DEVICE lpGpuDevice);
    707 HDC WINAPI wglCreateAffinityDCNV (const HGPUNV *phGpuList);
    708 BOOL WINAPI wglEnumGpusFromAffinityDCNV (HDC hAffinityDC, UINT iGpuIndex, HGPUNV *hGpu);
    709 BOOL WINAPI wglDeleteDCNV (HDC hdc);
    710 #endif
    711 #endif /* WGL_NV_gpu_affinity */
    712 
    713 #ifndef WGL_NV_multisample_coverage
    714 #define WGL_NV_multisample_coverage 1
    715 #define WGL_COVERAGE_SAMPLES_NV           0x2042
    716 #define WGL_COLOR_SAMPLES_NV              0x20B9
    717 #endif /* WGL_NV_multisample_coverage */
    718 
    719 #ifndef WGL_NV_present_video
    720 #define WGL_NV_present_video 1
    721 DECLARE_HANDLE(HVIDEOOUTPUTDEVICENV);
    722 #define WGL_NUM_VIDEO_SLOTS_NV            0x20F0
    723 typedef int (WINAPI * PFNWGLENUMERATEVIDEODEVICESNVPROC) (HDC hDC, HVIDEOOUTPUTDEVICENV *phDeviceList);
    724 typedef BOOL (WINAPI * PFNWGLBINDVIDEODEVICENVPROC) (HDC hDC, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int *piAttribList);
    725 typedef BOOL (WINAPI * PFNWGLQUERYCURRENTCONTEXTNVPROC) (int iAttribute, int *piValue);
    726 #ifdef WGL_WGLEXT_PROTOTYPES
    727 int WINAPI wglEnumerateVideoDevicesNV (HDC hDC, HVIDEOOUTPUTDEVICENV *phDeviceList);
    728 BOOL WINAPI wglBindVideoDeviceNV (HDC hDC, unsigned int uVideoSlot, HVIDEOOUTPUTDEVICENV hVideoDevice, const int *piAttribList);
    729 BOOL WINAPI wglQueryCurrentContextNV (int iAttribute, int *piValue);
    730 #endif
    731 #endif /* WGL_NV_present_video */
    732 
    733 #ifndef WGL_NV_render_depth_texture
    734 #define WGL_NV_render_depth_texture 1
    735 #define WGL_BIND_TO_TEXTURE_DEPTH_NV      0x20A3
    736 #define WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV 0x20A4
    737 #define WGL_DEPTH_TEXTURE_FORMAT_NV       0x20A5
    738 #define WGL_TEXTURE_DEPTH_COMPONENT_NV    0x20A6
    739 #define WGL_DEPTH_COMPONENT_NV            0x20A7
    740 #endif /* WGL_NV_render_depth_texture */
    741 
    742 #ifndef WGL_NV_render_texture_rectangle
    743 #define WGL_NV_render_texture_rectangle 1
    744 #define WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV 0x20A0
    745 #define WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV 0x20A1
    746 #define WGL_TEXTURE_RECTANGLE_NV          0x20A2
    747 #endif /* WGL_NV_render_texture_rectangle */
    748 
    749 #ifndef WGL_NV_swap_group
    750 #define WGL_NV_swap_group 1
    751 typedef BOOL (WINAPI * PFNWGLJOINSWAPGROUPNVPROC) (HDC hDC, GLuint group);
    752 typedef BOOL (WINAPI * PFNWGLBINDSWAPBARRIERNVPROC) (GLuint group, GLuint barrier);
    753 typedef BOOL (WINAPI * PFNWGLQUERYSWAPGROUPNVPROC) (HDC hDC, GLuint *group, GLuint *barrier);
    754 typedef BOOL (WINAPI * PFNWGLQUERYMAXSWAPGROUPSNVPROC) (HDC hDC, GLuint *maxGroups, GLuint *maxBarriers);
    755 typedef BOOL (WINAPI * PFNWGLQUERYFRAMECOUNTNVPROC) (HDC hDC, GLuint *count);
    756 typedef BOOL (WINAPI * PFNWGLRESETFRAMECOUNTNVPROC) (HDC hDC);
    757 #ifdef WGL_WGLEXT_PROTOTYPES
    758 BOOL WINAPI wglJoinSwapGroupNV (HDC hDC, GLuint group);
    759 BOOL WINAPI wglBindSwapBarrierNV (GLuint group, GLuint barrier);
    760 BOOL WINAPI wglQuerySwapGroupNV (HDC hDC, GLuint *group, GLuint *barrier);
    761 BOOL WINAPI wglQueryMaxSwapGroupsNV (HDC hDC, GLuint *maxGroups, GLuint *maxBarriers);
    762 BOOL WINAPI wglQueryFrameCountNV (HDC hDC, GLuint *count);
    763 BOOL WINAPI wglResetFrameCountNV (HDC hDC);
    764 #endif
    765 #endif /* WGL_NV_swap_group */
    766 
    767 #ifndef WGL_NV_vertex_array_range
    768 #define WGL_NV_vertex_array_range 1
    769 typedef void *(WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
    770 typedef void (WINAPI * PFNWGLFREEMEMORYNVPROC) (void *pointer);
    771 #ifdef WGL_WGLEXT_PROTOTYPES
    772 void *WINAPI wglAllocateMemoryNV (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
    773 void WINAPI wglFreeMemoryNV (void *pointer);
    774 #endif
    775 #endif /* WGL_NV_vertex_array_range */
    776 
    777 #ifndef WGL_NV_video_capture
    778 #define WGL_NV_video_capture 1
    779 DECLARE_HANDLE(HVIDEOINPUTDEVICENV);
    780 #define WGL_UNIQUE_ID_NV                  0x20CE
    781 #define WGL_NUM_VIDEO_CAPTURE_SLOTS_NV    0x20CF
    782 typedef BOOL (WINAPI * PFNWGLBINDVIDEOCAPTUREDEVICENVPROC) (UINT uVideoSlot, HVIDEOINPUTDEVICENV hDevice);
    783 typedef UINT (WINAPI * PFNWGLENUMERATEVIDEOCAPTUREDEVICESNVPROC) (HDC hDc, HVIDEOINPUTDEVICENV *phDeviceList);
    784 typedef BOOL (WINAPI * PFNWGLLOCKVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
    785 typedef BOOL (WINAPI * PFNWGLQUERYVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice, int iAttribute, int *piValue);
    786 typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOCAPTUREDEVICENVPROC) (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
    787 #ifdef WGL_WGLEXT_PROTOTYPES
    788 BOOL WINAPI wglBindVideoCaptureDeviceNV (UINT uVideoSlot, HVIDEOINPUTDEVICENV hDevice);
    789 UINT WINAPI wglEnumerateVideoCaptureDevicesNV (HDC hDc, HVIDEOINPUTDEVICENV *phDeviceList);
    790 BOOL WINAPI wglLockVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
    791 BOOL WINAPI wglQueryVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice, int iAttribute, int *piValue);
    792 BOOL WINAPI wglReleaseVideoCaptureDeviceNV (HDC hDc, HVIDEOINPUTDEVICENV hDevice);
    793 #endif
    794 #endif /* WGL_NV_video_capture */
    795 
    796 #ifndef WGL_NV_video_output
    797 #define WGL_NV_video_output 1
    798 DECLARE_HANDLE(HPVIDEODEV);
    799 #define WGL_BIND_TO_VIDEO_RGB_NV          0x20C0
    800 #define WGL_BIND_TO_VIDEO_RGBA_NV         0x20C1
    801 #define WGL_BIND_TO_VIDEO_RGB_AND_DEPTH_NV 0x20C2
    802 #define WGL_VIDEO_OUT_COLOR_NV            0x20C3
    803 #define WGL_VIDEO_OUT_ALPHA_NV            0x20C4
    804 #define WGL_VIDEO_OUT_DEPTH_NV            0x20C5
    805 #define WGL_VIDEO_OUT_COLOR_AND_ALPHA_NV  0x20C6
    806 #define WGL_VIDEO_OUT_COLOR_AND_DEPTH_NV  0x20C7
    807 #define WGL_VIDEO_OUT_FRAME               0x20C8
    808 #define WGL_VIDEO_OUT_FIELD_1             0x20C9
    809 #define WGL_VIDEO_OUT_FIELD_2             0x20CA
    810 #define WGL_VIDEO_OUT_STACKED_FIELDS_1_2  0x20CB
    811 #define WGL_VIDEO_OUT_STACKED_FIELDS_2_1  0x20CC
    812 typedef BOOL (WINAPI * PFNWGLGETVIDEODEVICENVPROC) (HDC hDC, int numDevices, HPVIDEODEV *hVideoDevice);
    813 typedef BOOL (WINAPI * PFNWGLRELEASEVIDEODEVICENVPROC) (HPVIDEODEV hVideoDevice);
    814 typedef BOOL (WINAPI * PFNWGLBINDVIDEOIMAGENVPROC) (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer);
    815 typedef BOOL (WINAPI * PFNWGLRELEASEVIDEOIMAGENVPROC) (HPBUFFERARB hPbuffer, int iVideoBuffer);
    816 typedef BOOL (WINAPI * PFNWGLSENDPBUFFERTOVIDEONVPROC) (HPBUFFERARB hPbuffer, int iBufferType, unsigned long *pulCounterPbuffer, BOOL bBlock);
    817 typedef BOOL (WINAPI * PFNWGLGETVIDEOINFONVPROC) (HPVIDEODEV hpVideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
    818 #ifdef WGL_WGLEXT_PROTOTYPES
    819 BOOL WINAPI wglGetVideoDeviceNV (HDC hDC, int numDevices, HPVIDEODEV *hVideoDevice);
    820 BOOL WINAPI wglReleaseVideoDeviceNV (HPVIDEODEV hVideoDevice);
    821 BOOL WINAPI wglBindVideoImageNV (HPVIDEODEV hVideoDevice, HPBUFFERARB hPbuffer, int iVideoBuffer);
    822 BOOL WINAPI wglReleaseVideoImageNV (HPBUFFERARB hPbuffer, int iVideoBuffer);
    823 BOOL WINAPI wglSendPbufferToVideoNV (HPBUFFERARB hPbuffer, int iBufferType, unsigned long *pulCounterPbuffer, BOOL bBlock);
    824 BOOL WINAPI wglGetVideoInfoNV (HPVIDEODEV hpVideoDevice, unsigned long *pulCounterOutputPbuffer, unsigned long *pulCounterOutputVideo);
    825 #endif
    826 #endif /* WGL_NV_video_output */
    827 
    828 #ifndef WGL_OML_sync_control
    829 #define WGL_OML_sync_control 1
    830 typedef BOOL (WINAPI * PFNWGLGETSYNCVALUESOMLPROC) (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
    831 typedef BOOL (WINAPI * PFNWGLGETMSCRATEOMLPROC) (HDC hdc, INT32 *numerator, INT32 *denominator);
    832 typedef INT64 (WINAPI * PFNWGLSWAPBUFFERSMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
    833 typedef INT64 (WINAPI * PFNWGLSWAPLAYERBUFFERSMSCOMLPROC) (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
    834 typedef BOOL (WINAPI * PFNWGLWAITFORMSCOMLPROC) (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
    835 typedef BOOL (WINAPI * PFNWGLWAITFORSBCOMLPROC) (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
    836 #ifdef WGL_WGLEXT_PROTOTYPES
    837 BOOL WINAPI wglGetSyncValuesOML (HDC hdc, INT64 *ust, INT64 *msc, INT64 *sbc);
    838 BOOL WINAPI wglGetMscRateOML (HDC hdc, INT32 *numerator, INT32 *denominator);
    839 INT64 WINAPI wglSwapBuffersMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder);
    840 INT64 WINAPI wglSwapLayerBuffersMscOML (HDC hdc, int fuPlanes, INT64 target_msc, INT64 divisor, INT64 remainder);
    841 BOOL WINAPI wglWaitForMscOML (HDC hdc, INT64 target_msc, INT64 divisor, INT64 remainder, INT64 *ust, INT64 *msc, INT64 *sbc);
    842 BOOL WINAPI wglWaitForSbcOML (HDC hdc, INT64 target_sbc, INT64 *ust, INT64 *msc, INT64 *sbc);
    843 #endif
    844 #endif /* WGL_OML_sync_control */
    845 
    846 #ifdef __cplusplus
    847 }
    848 #endif
    849 
    850 #endif
    851