pyglet 2.1.13__py3-none-any.whl → 3.0.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyglet/__init__.py +67 -61
- pyglet/__init__.pyi +15 -8
- pyglet/app/__init__.py +22 -13
- pyglet/app/async_app.py +212 -0
- pyglet/app/base.py +2 -1
- pyglet/app/{xlib.py → linux.py} +3 -3
- pyglet/config/__init__.py +101 -0
- pyglet/config/gl/__init__.py +30 -0
- pyglet/config/gl/egl.py +120 -0
- pyglet/config/gl/macos.py +262 -0
- pyglet/config/gl/windows.py +267 -0
- pyglet/config/gl/x11.py +142 -0
- pyglet/customtypes.py +43 -2
- pyglet/display/__init__.py +8 -6
- pyglet/display/base.py +3 -63
- pyglet/display/cocoa.py +12 -17
- pyglet/display/emscripten.py +39 -0
- pyglet/display/headless.py +23 -30
- pyglet/display/wayland.py +157 -0
- pyglet/display/win32.py +5 -21
- pyglet/display/xlib.py +19 -27
- pyglet/display/xlib_vidmoderestore.py +2 -2
- pyglet/enums.py +183 -0
- pyglet/event.py +0 -1
- pyglet/experimental/geoshader_sprite.py +15 -13
- pyglet/experimental/hidraw.py +6 -15
- pyglet/experimental/multitexture_sprite.py +31 -19
- pyglet/experimental/particles.py +13 -35
- pyglet/font/__init__.py +251 -85
- pyglet/font/base.py +116 -61
- pyglet/font/dwrite/__init__.py +349 -204
- pyglet/font/dwrite/dwrite_lib.py +27 -5
- pyglet/font/fontconfig.py +14 -6
- pyglet/font/freetype.py +138 -87
- pyglet/font/freetype_lib.py +19 -0
- pyglet/font/group.py +179 -0
- pyglet/font/harfbuzz/__init__.py +3 -3
- pyglet/font/pyodide_js.py +310 -0
- pyglet/font/quartz.py +319 -126
- pyglet/font/ttf.py +45 -3
- pyglet/font/user.py +14 -19
- pyglet/font/win32.py +45 -21
- pyglet/graphics/__init__.py +8 -787
- pyglet/graphics/allocation.py +115 -1
- pyglet/graphics/api/__init__.py +77 -0
- pyglet/graphics/api/base.py +299 -0
- pyglet/graphics/api/gl/__init__.py +58 -0
- pyglet/graphics/api/gl/base.py +24 -0
- pyglet/graphics/{vertexbuffer.py → api/gl/buffer.py} +104 -159
- pyglet/graphics/api/gl/cocoa/context.py +76 -0
- pyglet/graphics/api/gl/context.py +391 -0
- pyglet/graphics/api/gl/default_shaders.py +0 -0
- pyglet/graphics/api/gl/draw.py +627 -0
- pyglet/graphics/api/gl/egl/__init__.py +0 -0
- pyglet/graphics/api/gl/egl/context.py +92 -0
- pyglet/graphics/api/gl/enums.py +76 -0
- pyglet/graphics/api/gl/framebuffer.py +315 -0
- pyglet/graphics/api/gl/gl.py +5463 -0
- pyglet/graphics/api/gl/gl_info.py +188 -0
- pyglet/graphics/api/gl/global_opengl.py +226 -0
- pyglet/{gl → graphics/api/gl}/lib.py +34 -18
- pyglet/graphics/api/gl/shader.py +1476 -0
- pyglet/graphics/api/gl/shapes.py +55 -0
- pyglet/graphics/api/gl/sprite.py +102 -0
- pyglet/graphics/api/gl/state.py +219 -0
- pyglet/graphics/api/gl/text.py +190 -0
- pyglet/graphics/api/gl/texture.py +1526 -0
- pyglet/graphics/{vertexarray.py → api/gl/vertexarray.py} +11 -13
- pyglet/graphics/api/gl/vertexdomain.py +751 -0
- pyglet/graphics/api/gl/win32/__init__.py +0 -0
- pyglet/graphics/api/gl/win32/context.py +108 -0
- pyglet/graphics/api/gl/win32/wgl_info.py +24 -0
- pyglet/graphics/api/gl/xlib/__init__.py +0 -0
- pyglet/graphics/api/gl/xlib/context.py +174 -0
- pyglet/{gl → graphics/api/gl/xlib}/glx_info.py +26 -31
- pyglet/graphics/api/gl1/__init__.py +0 -0
- pyglet/{gl → graphics/api/gl1}/gl_compat.py +3 -2
- pyglet/graphics/api/gl2/__init__.py +0 -0
- pyglet/graphics/api/gl2/buffer.py +320 -0
- pyglet/graphics/api/gl2/draw.py +600 -0
- pyglet/graphics/api/gl2/global_opengl.py +122 -0
- pyglet/graphics/api/gl2/shader.py +200 -0
- pyglet/graphics/api/gl2/shapes.py +51 -0
- pyglet/graphics/api/gl2/sprite.py +79 -0
- pyglet/graphics/api/gl2/text.py +175 -0
- pyglet/graphics/api/gl2/vertexdomain.py +364 -0
- pyglet/graphics/api/webgl/__init__.py +233 -0
- pyglet/graphics/api/webgl/buffer.py +302 -0
- pyglet/graphics/api/webgl/context.py +234 -0
- pyglet/graphics/api/webgl/draw.py +590 -0
- pyglet/graphics/api/webgl/enums.py +76 -0
- pyglet/graphics/api/webgl/framebuffer.py +360 -0
- pyglet/graphics/api/webgl/gl.py +1537 -0
- pyglet/graphics/api/webgl/gl_info.py +130 -0
- pyglet/graphics/api/webgl/shader.py +1346 -0
- pyglet/graphics/api/webgl/shapes.py +92 -0
- pyglet/graphics/api/webgl/sprite.py +102 -0
- pyglet/graphics/api/webgl/state.py +227 -0
- pyglet/graphics/api/webgl/text.py +187 -0
- pyglet/graphics/api/webgl/texture.py +1227 -0
- pyglet/graphics/api/webgl/vertexarray.py +54 -0
- pyglet/graphics/api/webgl/vertexdomain.py +616 -0
- pyglet/graphics/api/webgl/webgl_js.pyi +307 -0
- pyglet/{image → graphics}/atlas.py +33 -32
- pyglet/graphics/base.py +10 -0
- pyglet/graphics/buffer.py +245 -0
- pyglet/graphics/draw.py +578 -0
- pyglet/graphics/framebuffer.py +26 -0
- pyglet/graphics/instance.py +178 -69
- pyglet/graphics/shader.py +267 -1553
- pyglet/graphics/state.py +83 -0
- pyglet/graphics/texture.py +703 -0
- pyglet/graphics/vertexdomain.py +695 -538
- pyglet/gui/ninepatch.py +10 -10
- pyglet/gui/widgets.py +120 -10
- pyglet/image/__init__.py +20 -1973
- pyglet/image/animation.py +12 -12
- pyglet/image/base.py +730 -0
- pyglet/image/codecs/__init__.py +9 -0
- pyglet/image/codecs/bmp.py +53 -30
- pyglet/image/codecs/dds.py +53 -31
- pyglet/image/codecs/gdiplus.py +38 -14
- pyglet/image/codecs/gdkpixbuf2.py +0 -2
- pyglet/image/codecs/js_image.py +99 -0
- pyglet/image/codecs/ktx2.py +161 -0
- pyglet/image/codecs/pil.py +1 -1
- pyglet/image/codecs/png.py +1 -1
- pyglet/image/codecs/wic.py +11 -2
- pyglet/info.py +26 -24
- pyglet/input/__init__.py +8 -0
- pyglet/input/base.py +163 -105
- pyglet/input/controller.py +13 -19
- pyglet/input/controller_db.py +39 -24
- pyglet/input/emscripten/__init__.py +18 -0
- pyglet/input/emscripten/gamepad_js.py +397 -0
- pyglet/input/linux/__init__.py +11 -5
- pyglet/input/linux/evdev.py +10 -11
- pyglet/input/linux/x11_xinput.py +2 -2
- pyglet/input/linux/x11_xinput_tablet.py +1 -1
- pyglet/input/macos/__init__.py +7 -2
- pyglet/input/macos/darwin_gc.py +559 -0
- pyglet/input/win32/__init__.py +1 -1
- pyglet/input/win32/directinput.py +34 -29
- pyglet/input/win32/xinput.py +11 -61
- pyglet/lib.py +3 -3
- pyglet/libs/__init__.py +1 -1
- pyglet/{gl → libs/darwin}/agl.py +1 -1
- pyglet/libs/darwin/cocoapy/__init__.py +2 -2
- pyglet/libs/darwin/cocoapy/cocoahelpers.py +181 -0
- pyglet/libs/darwin/cocoapy/cocoalibs.py +31 -0
- pyglet/libs/darwin/cocoapy/cocoatypes.py +27 -0
- pyglet/libs/darwin/cocoapy/runtime.py +81 -45
- pyglet/libs/darwin/coreaudio.py +4 -4
- pyglet/{gl → libs/darwin}/lib_agl.py +9 -8
- pyglet/libs/darwin/quartzkey.py +1 -3
- pyglet/libs/egl/__init__.py +2 -0
- pyglet/libs/egl/egl_lib.py +576 -0
- pyglet/libs/egl/eglext.py +51 -5
- pyglet/libs/linux/__init__.py +0 -0
- pyglet/libs/linux/egl/__init__.py +0 -0
- pyglet/libs/linux/egl/eglext.py +22 -0
- pyglet/libs/linux/glx/__init__.py +0 -0
- pyglet/{gl → libs/linux/glx}/glx.py +13 -14
- pyglet/{gl → libs/linux/glx}/glxext_arb.py +408 -192
- pyglet/{gl → libs/linux/glx}/glxext_mesa.py +1 -1
- pyglet/{gl → libs/linux/glx}/glxext_nv.py +345 -164
- pyglet/{gl → libs/linux/glx}/lib_glx.py +3 -2
- pyglet/libs/linux/wayland/__init__.py +0 -0
- pyglet/libs/linux/wayland/client.py +1068 -0
- pyglet/libs/linux/wayland/lib_wayland.py +207 -0
- pyglet/libs/linux/wayland/wayland_egl.py +38 -0
- pyglet/libs/{wayland → linux/wayland}/xkbcommon.py +26 -0
- pyglet/libs/{x11 → linux/x11}/xf86vmode.py +4 -4
- pyglet/libs/{x11 → linux/x11}/xinerama.py +2 -2
- pyglet/libs/{x11 → linux/x11}/xinput.py +10 -10
- pyglet/libs/linux/x11/xrandr.py +0 -0
- pyglet/libs/{x11 → linux/x11}/xrender.py +1 -1
- pyglet/libs/shared/__init__.py +0 -0
- pyglet/libs/shared/spirv/__init__.py +0 -0
- pyglet/libs/shared/spirv/lib_shaderc.py +85 -0
- pyglet/libs/shared/spirv/lib_spirv_cross.py +126 -0
- pyglet/libs/win32/__init__.py +28 -8
- pyglet/libs/win32/constants.py +59 -48
- pyglet/libs/win32/context_managers.py +20 -3
- pyglet/libs/win32/dinput.py +105 -88
- pyglet/{gl → libs/win32}/lib_wgl.py +52 -26
- pyglet/libs/win32/types.py +58 -23
- pyglet/{gl → libs/win32}/wgl.py +32 -25
- pyglet/{gl → libs/win32}/wglext_arb.py +364 -2
- pyglet/media/__init__.py +9 -10
- pyglet/media/codecs/__init__.py +12 -1
- pyglet/media/codecs/base.py +99 -96
- pyglet/media/codecs/ffmpeg.py +2 -2
- pyglet/media/codecs/ffmpeg_lib/libavformat.py +3 -8
- pyglet/media/codecs/webaudio_pyodide.py +111 -0
- pyglet/media/drivers/__init__.py +9 -4
- pyglet/media/drivers/base.py +4 -4
- pyglet/media/drivers/openal/__init__.py +1 -1
- pyglet/media/drivers/openal/adaptation.py +3 -3
- pyglet/media/drivers/pulse/__init__.py +1 -1
- pyglet/media/drivers/pulse/adaptation.py +3 -3
- pyglet/media/drivers/pyodide_js/__init__.py +8 -0
- pyglet/media/drivers/pyodide_js/adaptation.py +288 -0
- pyglet/media/drivers/xaudio2/adaptation.py +3 -3
- pyglet/media/player.py +276 -193
- pyglet/media/player_worker_thread.py +1 -1
- pyglet/model/__init__.py +39 -29
- pyglet/model/codecs/base.py +4 -4
- pyglet/model/codecs/gltf.py +3 -3
- pyglet/model/codecs/obj.py +71 -43
- pyglet/resource.py +129 -78
- pyglet/shapes.py +154 -194
- pyglet/sprite.py +47 -164
- pyglet/text/__init__.py +44 -54
- pyglet/text/caret.py +12 -7
- pyglet/text/document.py +19 -17
- pyglet/text/formats/html.py +2 -2
- pyglet/text/formats/structured.py +10 -40
- pyglet/text/layout/__init__.py +20 -13
- pyglet/text/layout/base.py +176 -287
- pyglet/text/layout/incremental.py +9 -10
- pyglet/text/layout/scrolling.py +7 -95
- pyglet/window/__init__.py +183 -172
- pyglet/window/cocoa/__init__.py +62 -51
- pyglet/window/cocoa/pyglet_delegate.py +2 -25
- pyglet/window/cocoa/pyglet_view.py +9 -8
- pyglet/window/dialog/__init__.py +184 -0
- pyglet/window/dialog/base.py +99 -0
- pyglet/window/dialog/darwin.py +121 -0
- pyglet/window/dialog/linux.py +72 -0
- pyglet/window/dialog/windows.py +194 -0
- pyglet/window/emscripten/__init__.py +779 -0
- pyglet/window/headless/__init__.py +44 -28
- pyglet/window/key.py +2 -0
- pyglet/window/mouse.py +2 -2
- pyglet/window/wayland/__init__.py +377 -0
- pyglet/window/win32/__init__.py +101 -46
- pyglet/window/xlib/__init__.py +104 -66
- {pyglet-2.1.13.dist-info → pyglet-3.0.dev1.dist-info}/METADATA +2 -3
- pyglet-3.0.dev1.dist-info/RECORD +322 -0
- {pyglet-2.1.13.dist-info → pyglet-3.0.dev1.dist-info}/WHEEL +1 -1
- pyglet/gl/__init__.py +0 -208
- pyglet/gl/base.py +0 -499
- pyglet/gl/cocoa.py +0 -309
- pyglet/gl/gl.py +0 -4625
- pyglet/gl/gl.pyi +0 -2320
- pyglet/gl/gl_compat.pyi +0 -3097
- pyglet/gl/gl_info.py +0 -190
- pyglet/gl/headless.py +0 -166
- pyglet/gl/wgl_info.py +0 -36
- pyglet/gl/wglext_nv.py +0 -1096
- pyglet/gl/win32.py +0 -268
- pyglet/gl/xlib.py +0 -295
- pyglet/image/buffer.py +0 -274
- pyglet/image/codecs/s3tc.py +0 -354
- pyglet/libs/x11/xrandr.py +0 -166
- pyglet-2.1.13.dist-info/RECORD +0 -234
- /pyglet/{libs/wayland → graphics/api/gl/cocoa}/__init__.py +0 -0
- /pyglet/libs/{egl → linux/egl}/egl.py +0 -0
- /pyglet/libs/{egl → linux/egl}/lib.py +0 -0
- /pyglet/libs/{ioctl.py → linux/ioctl.py} +0 -0
- /pyglet/libs/{wayland → linux/wayland}/gbm.py +0 -0
- /pyglet/libs/{x11 → linux/x11}/__init__.py +0 -0
- /pyglet/libs/{x11 → linux/x11}/cursorfont.py +0 -0
- /pyglet/libs/{x11 → linux/x11}/xlib.py +0 -0
- /pyglet/libs/{x11 → linux/x11}/xsync.py +0 -0
- {pyglet-2.1.13.dist-info/licenses → pyglet-3.0.dev1.dist-info}/LICENSE +0 -0
pyglet/gl/wglext_nv.py
DELETED
|
@@ -1,1096 +0,0 @@
|
|
|
1
|
-
"""Wrapper for http://developer.download.nvidia.com/opengl/includes/wglext.h
|
|
2
|
-
|
|
3
|
-
Generated by tools/gengl.py.
|
|
4
|
-
Do not modify this file.
|
|
5
|
-
"""
|
|
6
|
-
|
|
7
|
-
from ctypes import CFUNCTYPE, POINTER, Structure, c_char_p, c_float, c_int, c_ubyte, c_uint, c_ushort
|
|
8
|
-
from ctypes.wintypes import CHAR, FLOAT, LPVOID
|
|
9
|
-
from pyglet.gl.lib import link_WGL as _link_function
|
|
10
|
-
from pyglet.gl.lib import c_void
|
|
11
|
-
from pyglet.libs.win32.types import VOID, INT64, LONG, HANDLE, DWORD, UINT, BOOL, HDC
|
|
12
|
-
|
|
13
|
-
# BEGIN GENERATED CONTENT (do not edit below this line)
|
|
14
|
-
|
|
15
|
-
# This content is generated by tools/gengl.py.
|
|
16
|
-
# Wrapper for http://developer.download.nvidia.com/opengl/includes/wglext.h
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
# H (C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:7)
|
|
20
|
-
# H (C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:7)
|
|
21
|
-
WIN32_LEAN_AND_MEAN = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:40
|
|
22
|
-
WGL_WGLEXT_VERSION = 6 # http://developer.download.nvidia.com/opengl/includes/wglext.h:60
|
|
23
|
-
# ARB_buffer_region (http://developer.download.nvidia.com/opengl/includes/wglext.h:62)
|
|
24
|
-
WGL_FRONT_COLOR_BUFFER_BIT_ARB = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:63
|
|
25
|
-
WGL_BACK_COLOR_BUFFER_BIT_ARB = 2 # http://developer.download.nvidia.com/opengl/includes/wglext.h:64
|
|
26
|
-
WGL_DEPTH_BUFFER_BIT_ARB = 4 # http://developer.download.nvidia.com/opengl/includes/wglext.h:65
|
|
27
|
-
WGL_STENCIL_BUFFER_BIT_ARB = 8 # http://developer.download.nvidia.com/opengl/includes/wglext.h:66
|
|
28
|
-
# ARB_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:69)
|
|
29
|
-
WGL_SAMPLE_BUFFERS_ARB = 8257 # http://developer.download.nvidia.com/opengl/includes/wglext.h:70
|
|
30
|
-
WGL_SAMPLES_ARB = 8258 # http://developer.download.nvidia.com/opengl/includes/wglext.h:71
|
|
31
|
-
# ARB_extensions_string (http://developer.download.nvidia.com/opengl/includes/wglext.h:74)
|
|
32
|
-
# ARB_pixel_format (http://developer.download.nvidia.com/opengl/includes/wglext.h:77)
|
|
33
|
-
WGL_NUMBER_PIXEL_FORMATS_ARB = 8192 # http://developer.download.nvidia.com/opengl/includes/wglext.h:78
|
|
34
|
-
WGL_DRAW_TO_WINDOW_ARB = 8193 # http://developer.download.nvidia.com/opengl/includes/wglext.h:79
|
|
35
|
-
WGL_DRAW_TO_BITMAP_ARB = 8194 # http://developer.download.nvidia.com/opengl/includes/wglext.h:80
|
|
36
|
-
WGL_ACCELERATION_ARB = 8195 # http://developer.download.nvidia.com/opengl/includes/wglext.h:81
|
|
37
|
-
WGL_NEED_PALETTE_ARB = 8196 # http://developer.download.nvidia.com/opengl/includes/wglext.h:82
|
|
38
|
-
WGL_NEED_SYSTEM_PALETTE_ARB = 8197 # http://developer.download.nvidia.com/opengl/includes/wglext.h:83
|
|
39
|
-
WGL_SWAP_LAYER_BUFFERS_ARB = 8198 # http://developer.download.nvidia.com/opengl/includes/wglext.h:84
|
|
40
|
-
WGL_SWAP_METHOD_ARB = 8199 # http://developer.download.nvidia.com/opengl/includes/wglext.h:85
|
|
41
|
-
WGL_NUMBER_OVERLAYS_ARB = 8200 # http://developer.download.nvidia.com/opengl/includes/wglext.h:86
|
|
42
|
-
WGL_NUMBER_UNDERLAYS_ARB = 8201 # http://developer.download.nvidia.com/opengl/includes/wglext.h:87
|
|
43
|
-
WGL_TRANSPARENT_ARB = 8202 # http://developer.download.nvidia.com/opengl/includes/wglext.h:88
|
|
44
|
-
WGL_TRANSPARENT_RED_VALUE_ARB = 8247 # http://developer.download.nvidia.com/opengl/includes/wglext.h:89
|
|
45
|
-
WGL_TRANSPARENT_GREEN_VALUE_ARB = 8248 # http://developer.download.nvidia.com/opengl/includes/wglext.h:90
|
|
46
|
-
WGL_TRANSPARENT_BLUE_VALUE_ARB = 8249 # http://developer.download.nvidia.com/opengl/includes/wglext.h:91
|
|
47
|
-
WGL_TRANSPARENT_ALPHA_VALUE_ARB = 8250 # http://developer.download.nvidia.com/opengl/includes/wglext.h:92
|
|
48
|
-
WGL_TRANSPARENT_INDEX_VALUE_ARB = 8251 # http://developer.download.nvidia.com/opengl/includes/wglext.h:93
|
|
49
|
-
WGL_SHARE_DEPTH_ARB = 8204 # http://developer.download.nvidia.com/opengl/includes/wglext.h:94
|
|
50
|
-
WGL_SHARE_STENCIL_ARB = 8205 # http://developer.download.nvidia.com/opengl/includes/wglext.h:95
|
|
51
|
-
WGL_SHARE_ACCUM_ARB = 8206 # http://developer.download.nvidia.com/opengl/includes/wglext.h:96
|
|
52
|
-
WGL_SUPPORT_GDI_ARB = 8207 # http://developer.download.nvidia.com/opengl/includes/wglext.h:97
|
|
53
|
-
WGL_SUPPORT_OPENGL_ARB = 8208 # http://developer.download.nvidia.com/opengl/includes/wglext.h:98
|
|
54
|
-
WGL_DOUBLE_BUFFER_ARB = 8209 # http://developer.download.nvidia.com/opengl/includes/wglext.h:99
|
|
55
|
-
WGL_STEREO_ARB = 8210 # http://developer.download.nvidia.com/opengl/includes/wglext.h:100
|
|
56
|
-
WGL_PIXEL_TYPE_ARB = 8211 # http://developer.download.nvidia.com/opengl/includes/wglext.h:101
|
|
57
|
-
WGL_COLOR_BITS_ARB = 8212 # http://developer.download.nvidia.com/opengl/includes/wglext.h:102
|
|
58
|
-
WGL_RED_BITS_ARB = 8213 # http://developer.download.nvidia.com/opengl/includes/wglext.h:103
|
|
59
|
-
WGL_RED_SHIFT_ARB = 8214 # http://developer.download.nvidia.com/opengl/includes/wglext.h:104
|
|
60
|
-
WGL_GREEN_BITS_ARB = 8215 # http://developer.download.nvidia.com/opengl/includes/wglext.h:105
|
|
61
|
-
WGL_GREEN_SHIFT_ARB = 8216 # http://developer.download.nvidia.com/opengl/includes/wglext.h:106
|
|
62
|
-
WGL_BLUE_BITS_ARB = 8217 # http://developer.download.nvidia.com/opengl/includes/wglext.h:107
|
|
63
|
-
WGL_BLUE_SHIFT_ARB = 8218 # http://developer.download.nvidia.com/opengl/includes/wglext.h:108
|
|
64
|
-
WGL_ALPHA_BITS_ARB = 8219 # http://developer.download.nvidia.com/opengl/includes/wglext.h:109
|
|
65
|
-
WGL_ALPHA_SHIFT_ARB = 8220 # http://developer.download.nvidia.com/opengl/includes/wglext.h:110
|
|
66
|
-
WGL_ACCUM_BITS_ARB = 8221 # http://developer.download.nvidia.com/opengl/includes/wglext.h:111
|
|
67
|
-
WGL_ACCUM_RED_BITS_ARB = 8222 # http://developer.download.nvidia.com/opengl/includes/wglext.h:112
|
|
68
|
-
WGL_ACCUM_GREEN_BITS_ARB = 8223 # http://developer.download.nvidia.com/opengl/includes/wglext.h:113
|
|
69
|
-
WGL_ACCUM_BLUE_BITS_ARB = 8224 # http://developer.download.nvidia.com/opengl/includes/wglext.h:114
|
|
70
|
-
WGL_ACCUM_ALPHA_BITS_ARB = 8225 # http://developer.download.nvidia.com/opengl/includes/wglext.h:115
|
|
71
|
-
WGL_DEPTH_BITS_ARB = 8226 # http://developer.download.nvidia.com/opengl/includes/wglext.h:116
|
|
72
|
-
WGL_STENCIL_BITS_ARB = 8227 # http://developer.download.nvidia.com/opengl/includes/wglext.h:117
|
|
73
|
-
WGL_AUX_BUFFERS_ARB = 8228 # http://developer.download.nvidia.com/opengl/includes/wglext.h:118
|
|
74
|
-
WGL_NO_ACCELERATION_ARB = 8229 # http://developer.download.nvidia.com/opengl/includes/wglext.h:119
|
|
75
|
-
WGL_GENERIC_ACCELERATION_ARB = 8230 # http://developer.download.nvidia.com/opengl/includes/wglext.h:120
|
|
76
|
-
WGL_FULL_ACCELERATION_ARB = 8231 # http://developer.download.nvidia.com/opengl/includes/wglext.h:121
|
|
77
|
-
WGL_SWAP_EXCHANGE_ARB = 8232 # http://developer.download.nvidia.com/opengl/includes/wglext.h:122
|
|
78
|
-
WGL_SWAP_COPY_ARB = 8233 # http://developer.download.nvidia.com/opengl/includes/wglext.h:123
|
|
79
|
-
WGL_SWAP_UNDEFINED_ARB = 8234 # http://developer.download.nvidia.com/opengl/includes/wglext.h:124
|
|
80
|
-
WGL_TYPE_RGBA_ARB = 8235 # http://developer.download.nvidia.com/opengl/includes/wglext.h:125
|
|
81
|
-
WGL_TYPE_COLORINDEX_ARB = 8236 # http://developer.download.nvidia.com/opengl/includes/wglext.h:126
|
|
82
|
-
# ARB_make_current_read (http://developer.download.nvidia.com/opengl/includes/wglext.h:129)
|
|
83
|
-
ERROR_INVALID_PIXEL_TYPE_ARB = 8259 # http://developer.download.nvidia.com/opengl/includes/wglext.h:130
|
|
84
|
-
ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB = 8276 # http://developer.download.nvidia.com/opengl/includes/wglext.h:131
|
|
85
|
-
# ARB_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:134)
|
|
86
|
-
WGL_DRAW_TO_PBUFFER_ARB = 8237 # http://developer.download.nvidia.com/opengl/includes/wglext.h:135
|
|
87
|
-
WGL_MAX_PBUFFER_PIXELS_ARB = 8238 # http://developer.download.nvidia.com/opengl/includes/wglext.h:136
|
|
88
|
-
WGL_MAX_PBUFFER_WIDTH_ARB = 8239 # http://developer.download.nvidia.com/opengl/includes/wglext.h:137
|
|
89
|
-
WGL_MAX_PBUFFER_HEIGHT_ARB = 8240 # http://developer.download.nvidia.com/opengl/includes/wglext.h:138
|
|
90
|
-
WGL_PBUFFER_LARGEST_ARB = 8243 # http://developer.download.nvidia.com/opengl/includes/wglext.h:139
|
|
91
|
-
WGL_PBUFFER_WIDTH_ARB = 8244 # http://developer.download.nvidia.com/opengl/includes/wglext.h:140
|
|
92
|
-
WGL_PBUFFER_HEIGHT_ARB = 8245 # http://developer.download.nvidia.com/opengl/includes/wglext.h:141
|
|
93
|
-
WGL_PBUFFER_LOST_ARB = 8246 # http://developer.download.nvidia.com/opengl/includes/wglext.h:142
|
|
94
|
-
# ARB_render_texture (http://developer.download.nvidia.com/opengl/includes/wglext.h:145)
|
|
95
|
-
WGL_BIND_TO_TEXTURE_RGB_ARB = 8304 # http://developer.download.nvidia.com/opengl/includes/wglext.h:146
|
|
96
|
-
WGL_BIND_TO_TEXTURE_RGBA_ARB = 8305 # http://developer.download.nvidia.com/opengl/includes/wglext.h:147
|
|
97
|
-
WGL_TEXTURE_FORMAT_ARB = 8306 # http://developer.download.nvidia.com/opengl/includes/wglext.h:148
|
|
98
|
-
WGL_TEXTURE_TARGET_ARB = 8307 # http://developer.download.nvidia.com/opengl/includes/wglext.h:149
|
|
99
|
-
WGL_MIPMAP_TEXTURE_ARB = 8308 # http://developer.download.nvidia.com/opengl/includes/wglext.h:150
|
|
100
|
-
WGL_TEXTURE_RGB_ARB = 8309 # http://developer.download.nvidia.com/opengl/includes/wglext.h:151
|
|
101
|
-
WGL_TEXTURE_RGBA_ARB = 8310 # http://developer.download.nvidia.com/opengl/includes/wglext.h:152
|
|
102
|
-
WGL_NO_TEXTURE_ARB = 8311 # http://developer.download.nvidia.com/opengl/includes/wglext.h:153
|
|
103
|
-
WGL_TEXTURE_CUBE_MAP_ARB = 8312 # http://developer.download.nvidia.com/opengl/includes/wglext.h:154
|
|
104
|
-
WGL_TEXTURE_1D_ARB = 8313 # http://developer.download.nvidia.com/opengl/includes/wglext.h:155
|
|
105
|
-
WGL_TEXTURE_2D_ARB = 8314 # http://developer.download.nvidia.com/opengl/includes/wglext.h:156
|
|
106
|
-
WGL_MIPMAP_LEVEL_ARB = 8315 # http://developer.download.nvidia.com/opengl/includes/wglext.h:157
|
|
107
|
-
WGL_CUBE_MAP_FACE_ARB = 8316 # http://developer.download.nvidia.com/opengl/includes/wglext.h:158
|
|
108
|
-
WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB = 8317 # http://developer.download.nvidia.com/opengl/includes/wglext.h:159
|
|
109
|
-
WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB = 8318 # http://developer.download.nvidia.com/opengl/includes/wglext.h:160
|
|
110
|
-
WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB = 8319 # http://developer.download.nvidia.com/opengl/includes/wglext.h:161
|
|
111
|
-
WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB = 8320 # http://developer.download.nvidia.com/opengl/includes/wglext.h:162
|
|
112
|
-
WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB = 8321 # http://developer.download.nvidia.com/opengl/includes/wglext.h:163
|
|
113
|
-
WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB = 8322 # http://developer.download.nvidia.com/opengl/includes/wglext.h:164
|
|
114
|
-
WGL_FRONT_LEFT_ARB = 8323 # http://developer.download.nvidia.com/opengl/includes/wglext.h:165
|
|
115
|
-
WGL_FRONT_RIGHT_ARB = 8324 # http://developer.download.nvidia.com/opengl/includes/wglext.h:166
|
|
116
|
-
WGL_BACK_LEFT_ARB = 8325 # http://developer.download.nvidia.com/opengl/includes/wglext.h:167
|
|
117
|
-
WGL_BACK_RIGHT_ARB = 8326 # http://developer.download.nvidia.com/opengl/includes/wglext.h:168
|
|
118
|
-
WGL_AUX0_ARB = 8327 # http://developer.download.nvidia.com/opengl/includes/wglext.h:169
|
|
119
|
-
WGL_AUX1_ARB = 8328 # http://developer.download.nvidia.com/opengl/includes/wglext.h:170
|
|
120
|
-
WGL_AUX2_ARB = 8329 # http://developer.download.nvidia.com/opengl/includes/wglext.h:171
|
|
121
|
-
WGL_AUX3_ARB = 8330 # http://developer.download.nvidia.com/opengl/includes/wglext.h:172
|
|
122
|
-
WGL_AUX4_ARB = 8331 # http://developer.download.nvidia.com/opengl/includes/wglext.h:173
|
|
123
|
-
WGL_AUX5_ARB = 8332 # http://developer.download.nvidia.com/opengl/includes/wglext.h:174
|
|
124
|
-
WGL_AUX6_ARB = 8333 # http://developer.download.nvidia.com/opengl/includes/wglext.h:175
|
|
125
|
-
WGL_AUX7_ARB = 8334 # http://developer.download.nvidia.com/opengl/includes/wglext.h:176
|
|
126
|
-
WGL_AUX8_ARB = 8335 # http://developer.download.nvidia.com/opengl/includes/wglext.h:177
|
|
127
|
-
WGL_AUX9_ARB = 8336 # http://developer.download.nvidia.com/opengl/includes/wglext.h:178
|
|
128
|
-
# ARB_pixel_format_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:181)
|
|
129
|
-
WGL_TYPE_RGBA_FLOAT_ARB = 8608 # http://developer.download.nvidia.com/opengl/includes/wglext.h:182
|
|
130
|
-
# EXT_make_current_read (http://developer.download.nvidia.com/opengl/includes/wglext.h:185)
|
|
131
|
-
ERROR_INVALID_PIXEL_TYPE_EXT = 8259 # http://developer.download.nvidia.com/opengl/includes/wglext.h:186
|
|
132
|
-
# EXT_pixel_format (http://developer.download.nvidia.com/opengl/includes/wglext.h:189)
|
|
133
|
-
WGL_NUMBER_PIXEL_FORMATS_EXT = 8192 # http://developer.download.nvidia.com/opengl/includes/wglext.h:190
|
|
134
|
-
WGL_DRAW_TO_WINDOW_EXT = 8193 # http://developer.download.nvidia.com/opengl/includes/wglext.h:191
|
|
135
|
-
WGL_DRAW_TO_BITMAP_EXT = 8194 # http://developer.download.nvidia.com/opengl/includes/wglext.h:192
|
|
136
|
-
WGL_ACCELERATION_EXT = 8195 # http://developer.download.nvidia.com/opengl/includes/wglext.h:193
|
|
137
|
-
WGL_NEED_PALETTE_EXT = 8196 # http://developer.download.nvidia.com/opengl/includes/wglext.h:194
|
|
138
|
-
WGL_NEED_SYSTEM_PALETTE_EXT = 8197 # http://developer.download.nvidia.com/opengl/includes/wglext.h:195
|
|
139
|
-
WGL_SWAP_LAYER_BUFFERS_EXT = 8198 # http://developer.download.nvidia.com/opengl/includes/wglext.h:196
|
|
140
|
-
WGL_SWAP_METHOD_EXT = 8199 # http://developer.download.nvidia.com/opengl/includes/wglext.h:197
|
|
141
|
-
WGL_NUMBER_OVERLAYS_EXT = 8200 # http://developer.download.nvidia.com/opengl/includes/wglext.h:198
|
|
142
|
-
WGL_NUMBER_UNDERLAYS_EXT = 8201 # http://developer.download.nvidia.com/opengl/includes/wglext.h:199
|
|
143
|
-
WGL_TRANSPARENT_EXT = 8202 # http://developer.download.nvidia.com/opengl/includes/wglext.h:200
|
|
144
|
-
WGL_TRANSPARENT_VALUE_EXT = 8203 # http://developer.download.nvidia.com/opengl/includes/wglext.h:201
|
|
145
|
-
WGL_SHARE_DEPTH_EXT = 8204 # http://developer.download.nvidia.com/opengl/includes/wglext.h:202
|
|
146
|
-
WGL_SHARE_STENCIL_EXT = 8205 # http://developer.download.nvidia.com/opengl/includes/wglext.h:203
|
|
147
|
-
WGL_SHARE_ACCUM_EXT = 8206 # http://developer.download.nvidia.com/opengl/includes/wglext.h:204
|
|
148
|
-
WGL_SUPPORT_GDI_EXT = 8207 # http://developer.download.nvidia.com/opengl/includes/wglext.h:205
|
|
149
|
-
WGL_SUPPORT_OPENGL_EXT = 8208 # http://developer.download.nvidia.com/opengl/includes/wglext.h:206
|
|
150
|
-
WGL_DOUBLE_BUFFER_EXT = 8209 # http://developer.download.nvidia.com/opengl/includes/wglext.h:207
|
|
151
|
-
WGL_STEREO_EXT = 8210 # http://developer.download.nvidia.com/opengl/includes/wglext.h:208
|
|
152
|
-
WGL_PIXEL_TYPE_EXT = 8211 # http://developer.download.nvidia.com/opengl/includes/wglext.h:209
|
|
153
|
-
WGL_COLOR_BITS_EXT = 8212 # http://developer.download.nvidia.com/opengl/includes/wglext.h:210
|
|
154
|
-
WGL_RED_BITS_EXT = 8213 # http://developer.download.nvidia.com/opengl/includes/wglext.h:211
|
|
155
|
-
WGL_RED_SHIFT_EXT = 8214 # http://developer.download.nvidia.com/opengl/includes/wglext.h:212
|
|
156
|
-
WGL_GREEN_BITS_EXT = 8215 # http://developer.download.nvidia.com/opengl/includes/wglext.h:213
|
|
157
|
-
WGL_GREEN_SHIFT_EXT = 8216 # http://developer.download.nvidia.com/opengl/includes/wglext.h:214
|
|
158
|
-
WGL_BLUE_BITS_EXT = 8217 # http://developer.download.nvidia.com/opengl/includes/wglext.h:215
|
|
159
|
-
WGL_BLUE_SHIFT_EXT = 8218 # http://developer.download.nvidia.com/opengl/includes/wglext.h:216
|
|
160
|
-
WGL_ALPHA_BITS_EXT = 8219 # http://developer.download.nvidia.com/opengl/includes/wglext.h:217
|
|
161
|
-
WGL_ALPHA_SHIFT_EXT = 8220 # http://developer.download.nvidia.com/opengl/includes/wglext.h:218
|
|
162
|
-
WGL_ACCUM_BITS_EXT = 8221 # http://developer.download.nvidia.com/opengl/includes/wglext.h:219
|
|
163
|
-
WGL_ACCUM_RED_BITS_EXT = 8222 # http://developer.download.nvidia.com/opengl/includes/wglext.h:220
|
|
164
|
-
WGL_ACCUM_GREEN_BITS_EXT = 8223 # http://developer.download.nvidia.com/opengl/includes/wglext.h:221
|
|
165
|
-
WGL_ACCUM_BLUE_BITS_EXT = 8224 # http://developer.download.nvidia.com/opengl/includes/wglext.h:222
|
|
166
|
-
WGL_ACCUM_ALPHA_BITS_EXT = 8225 # http://developer.download.nvidia.com/opengl/includes/wglext.h:223
|
|
167
|
-
WGL_DEPTH_BITS_EXT = 8226 # http://developer.download.nvidia.com/opengl/includes/wglext.h:224
|
|
168
|
-
WGL_STENCIL_BITS_EXT = 8227 # http://developer.download.nvidia.com/opengl/includes/wglext.h:225
|
|
169
|
-
WGL_AUX_BUFFERS_EXT = 8228 # http://developer.download.nvidia.com/opengl/includes/wglext.h:226
|
|
170
|
-
WGL_NO_ACCELERATION_EXT = 8229 # http://developer.download.nvidia.com/opengl/includes/wglext.h:227
|
|
171
|
-
WGL_GENERIC_ACCELERATION_EXT = 8230 # http://developer.download.nvidia.com/opengl/includes/wglext.h:228
|
|
172
|
-
WGL_FULL_ACCELERATION_EXT = 8231 # http://developer.download.nvidia.com/opengl/includes/wglext.h:229
|
|
173
|
-
WGL_SWAP_EXCHANGE_EXT = 8232 # http://developer.download.nvidia.com/opengl/includes/wglext.h:230
|
|
174
|
-
WGL_SWAP_COPY_EXT = 8233 # http://developer.download.nvidia.com/opengl/includes/wglext.h:231
|
|
175
|
-
WGL_SWAP_UNDEFINED_EXT = 8234 # http://developer.download.nvidia.com/opengl/includes/wglext.h:232
|
|
176
|
-
WGL_TYPE_RGBA_EXT = 8235 # http://developer.download.nvidia.com/opengl/includes/wglext.h:233
|
|
177
|
-
WGL_TYPE_COLORINDEX_EXT = 8236 # http://developer.download.nvidia.com/opengl/includes/wglext.h:234
|
|
178
|
-
# EXT_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:237)
|
|
179
|
-
WGL_DRAW_TO_PBUFFER_EXT = 8237 # http://developer.download.nvidia.com/opengl/includes/wglext.h:238
|
|
180
|
-
WGL_MAX_PBUFFER_PIXELS_EXT = 8238 # http://developer.download.nvidia.com/opengl/includes/wglext.h:239
|
|
181
|
-
WGL_MAX_PBUFFER_WIDTH_EXT = 8239 # http://developer.download.nvidia.com/opengl/includes/wglext.h:240
|
|
182
|
-
WGL_MAX_PBUFFER_HEIGHT_EXT = 8240 # http://developer.download.nvidia.com/opengl/includes/wglext.h:241
|
|
183
|
-
WGL_OPTIMAL_PBUFFER_WIDTH_EXT = 8241 # http://developer.download.nvidia.com/opengl/includes/wglext.h:242
|
|
184
|
-
WGL_OPTIMAL_PBUFFER_HEIGHT_EXT = 8242 # http://developer.download.nvidia.com/opengl/includes/wglext.h:243
|
|
185
|
-
WGL_PBUFFER_LARGEST_EXT = 8243 # http://developer.download.nvidia.com/opengl/includes/wglext.h:244
|
|
186
|
-
WGL_PBUFFER_WIDTH_EXT = 8244 # http://developer.download.nvidia.com/opengl/includes/wglext.h:245
|
|
187
|
-
WGL_PBUFFER_HEIGHT_EXT = 8245 # http://developer.download.nvidia.com/opengl/includes/wglext.h:246
|
|
188
|
-
# EXT_depth_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:249)
|
|
189
|
-
WGL_DEPTH_FLOAT_EXT = 8256 # http://developer.download.nvidia.com/opengl/includes/wglext.h:250
|
|
190
|
-
# 3DFX_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:253)
|
|
191
|
-
WGL_SAMPLE_BUFFERS_3DFX = 8288 # http://developer.download.nvidia.com/opengl/includes/wglext.h:254
|
|
192
|
-
WGL_SAMPLES_3DFX = 8289 # http://developer.download.nvidia.com/opengl/includes/wglext.h:255
|
|
193
|
-
# EXT_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:258)
|
|
194
|
-
WGL_SAMPLE_BUFFERS_EXT = 8257 # http://developer.download.nvidia.com/opengl/includes/wglext.h:259
|
|
195
|
-
WGL_SAMPLES_EXT = 8258 # http://developer.download.nvidia.com/opengl/includes/wglext.h:260
|
|
196
|
-
# I3D_digital_video_control (http://developer.download.nvidia.com/opengl/includes/wglext.h:263)
|
|
197
|
-
WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D = 8272 # http://developer.download.nvidia.com/opengl/includes/wglext.h:264
|
|
198
|
-
WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D = 8273 # http://developer.download.nvidia.com/opengl/includes/wglext.h:265
|
|
199
|
-
WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D = 8274 # http://developer.download.nvidia.com/opengl/includes/wglext.h:266
|
|
200
|
-
WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D = 8275 # http://developer.download.nvidia.com/opengl/includes/wglext.h:267
|
|
201
|
-
# I3D_gamma (http://developer.download.nvidia.com/opengl/includes/wglext.h:270)
|
|
202
|
-
WGL_GAMMA_TABLE_SIZE_I3D = 8270 # http://developer.download.nvidia.com/opengl/includes/wglext.h:271
|
|
203
|
-
WGL_GAMMA_EXCLUDE_DESKTOP_I3D = 8271 # http://developer.download.nvidia.com/opengl/includes/wglext.h:272
|
|
204
|
-
# I3D_genlock (http://developer.download.nvidia.com/opengl/includes/wglext.h:275)
|
|
205
|
-
WGL_GENLOCK_SOURCE_MULTIVIEW_I3D = 8260 # http://developer.download.nvidia.com/opengl/includes/wglext.h:276
|
|
206
|
-
WGL_GENLOCK_SOURCE_EXTENAL_SYNC_I3D = 8261 # http://developer.download.nvidia.com/opengl/includes/wglext.h:277
|
|
207
|
-
WGL_GENLOCK_SOURCE_EXTENAL_FIELD_I3D = 8262 # http://developer.download.nvidia.com/opengl/includes/wglext.h:278
|
|
208
|
-
WGL_GENLOCK_SOURCE_EXTENAL_TTL_I3D = 8263 # http://developer.download.nvidia.com/opengl/includes/wglext.h:279
|
|
209
|
-
WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D = 8264 # http://developer.download.nvidia.com/opengl/includes/wglext.h:280
|
|
210
|
-
WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D = 8265 # http://developer.download.nvidia.com/opengl/includes/wglext.h:281
|
|
211
|
-
WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D = 8266 # http://developer.download.nvidia.com/opengl/includes/wglext.h:282
|
|
212
|
-
WGL_GENLOCK_SOURCE_EDGE_RISING_I3D = 8267 # http://developer.download.nvidia.com/opengl/includes/wglext.h:283
|
|
213
|
-
WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D = 8268 # http://developer.download.nvidia.com/opengl/includes/wglext.h:284
|
|
214
|
-
# I3D_image_buffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:287)
|
|
215
|
-
WGL_IMAGE_BUFFER_MIN_ACCESS_I3D = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:288
|
|
216
|
-
WGL_IMAGE_BUFFER_LOCK_I3D = 2 # http://developer.download.nvidia.com/opengl/includes/wglext.h:289
|
|
217
|
-
# I3D_swap_frame_lock (http://developer.download.nvidia.com/opengl/includes/wglext.h:292)
|
|
218
|
-
# NV_render_depth_texture (http://developer.download.nvidia.com/opengl/includes/wglext.h:295)
|
|
219
|
-
WGL_BIND_TO_TEXTURE_DEPTH_NV = 8355 # http://developer.download.nvidia.com/opengl/includes/wglext.h:296
|
|
220
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV = 8356 # http://developer.download.nvidia.com/opengl/includes/wglext.h:297
|
|
221
|
-
WGL_DEPTH_TEXTURE_FORMAT_NV = 8357 # http://developer.download.nvidia.com/opengl/includes/wglext.h:298
|
|
222
|
-
WGL_TEXTURE_DEPTH_COMPONENT_NV = 8358 # http://developer.download.nvidia.com/opengl/includes/wglext.h:299
|
|
223
|
-
WGL_DEPTH_COMPONENT_NV = 8359 # http://developer.download.nvidia.com/opengl/includes/wglext.h:300
|
|
224
|
-
# NV_render_texture_rectangle (http://developer.download.nvidia.com/opengl/includes/wglext.h:303)
|
|
225
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV = 8352 # http://developer.download.nvidia.com/opengl/includes/wglext.h:304
|
|
226
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV = 8353 # http://developer.download.nvidia.com/opengl/includes/wglext.h:305
|
|
227
|
-
WGL_TEXTURE_RECTANGLE_NV = 8354 # http://developer.download.nvidia.com/opengl/includes/wglext.h:306
|
|
228
|
-
# ATI_pixel_format_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:309)
|
|
229
|
-
WGL_TYPE_RGBA_FLOAT_ATI = 8608 # http://developer.download.nvidia.com/opengl/includes/wglext.h:310
|
|
230
|
-
WGL_RGBA_FLOAT_MODE_ATI = 34848 # http://developer.download.nvidia.com/opengl/includes/wglext.h:311
|
|
231
|
-
WGL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI = 34869 # http://developer.download.nvidia.com/opengl/includes/wglext.h:312
|
|
232
|
-
# NV_float_buffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:315)
|
|
233
|
-
WGL_FLOAT_COMPONENTS_NV = 8368 # http://developer.download.nvidia.com/opengl/includes/wglext.h:316
|
|
234
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV = 8369 # http://developer.download.nvidia.com/opengl/includes/wglext.h:317
|
|
235
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV = 8370 # http://developer.download.nvidia.com/opengl/includes/wglext.h:318
|
|
236
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV = 8371 # http://developer.download.nvidia.com/opengl/includes/wglext.h:319
|
|
237
|
-
WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV = 8372 # http://developer.download.nvidia.com/opengl/includes/wglext.h:320
|
|
238
|
-
WGL_TEXTURE_FLOAT_R_NV = 8373 # http://developer.download.nvidia.com/opengl/includes/wglext.h:321
|
|
239
|
-
WGL_TEXTURE_FLOAT_RG_NV = 8374 # http://developer.download.nvidia.com/opengl/includes/wglext.h:322
|
|
240
|
-
WGL_TEXTURE_FLOAT_RGB_NV = 8375 # http://developer.download.nvidia.com/opengl/includes/wglext.h:323
|
|
241
|
-
WGL_TEXTURE_FLOAT_RGBA_NV = 8376 # http://developer.download.nvidia.com/opengl/includes/wglext.h:324
|
|
242
|
-
# NV_swap_group (http://developer.download.nvidia.com/opengl/includes/wglext.h:327)
|
|
243
|
-
# NV_gpu_affinity (http://developer.download.nvidia.com/opengl/includes/wglext.h:330)
|
|
244
|
-
WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV = 8400 # http://developer.download.nvidia.com/opengl/includes/wglext.h:331
|
|
245
|
-
WGL_ERROR_MISSING_AFFINITY_MASK_NV = 8401 # http://developer.download.nvidia.com/opengl/includes/wglext.h:332
|
|
246
|
-
# ARB_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:338)
|
|
247
|
-
|
|
248
|
-
HPBUFFERARB = HANDLE # http://developer.download.nvidia.com/opengl/includes/wglext.h:339
|
|
249
|
-
# EXT_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:341)
|
|
250
|
-
HPBUFFEREXT = HANDLE # http://developer.download.nvidia.com/opengl/includes/wglext.h:342
|
|
251
|
-
# NV_gpu_affinity (http://developer.download.nvidia.com/opengl/includes/wglext.h:345)
|
|
252
|
-
HGPUNV = HANDLE # http://developer.download.nvidia.com/opengl/includes/wglext.h:346
|
|
253
|
-
class struct__GPU_DEVICE(Structure):
|
|
254
|
-
__slots__ = [
|
|
255
|
-
'cb',
|
|
256
|
-
'DeviceName',
|
|
257
|
-
'DeviceString',
|
|
258
|
-
'Flags',
|
|
259
|
-
'rcVirtualScreen',
|
|
260
|
-
]
|
|
261
|
-
|
|
262
|
-
class struct_tagRECT(Structure):
|
|
263
|
-
__slots__ = [
|
|
264
|
-
'left',
|
|
265
|
-
'top',
|
|
266
|
-
'right',
|
|
267
|
-
'bottom',
|
|
268
|
-
]
|
|
269
|
-
|
|
270
|
-
struct_tagRECT._fields_ = [
|
|
271
|
-
('left', LONG),
|
|
272
|
-
('top', LONG),
|
|
273
|
-
('right', LONG),
|
|
274
|
-
('bottom', LONG),
|
|
275
|
-
]
|
|
276
|
-
|
|
277
|
-
RECT = struct_tagRECT # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:200
|
|
278
|
-
struct__GPU_DEVICE._fields_ = [
|
|
279
|
-
('cb', DWORD),
|
|
280
|
-
('DeviceName', CHAR * 32),
|
|
281
|
-
('DeviceString', CHAR * 128),
|
|
282
|
-
('Flags', DWORD),
|
|
283
|
-
('rcVirtualScreen', RECT),
|
|
284
|
-
]
|
|
285
|
-
|
|
286
|
-
GPU_DEVICE = struct__GPU_DEVICE # http://developer.download.nvidia.com/opengl/includes/wglext.h:353
|
|
287
|
-
PGPU_DEVICE = POINTER(struct__GPU_DEVICE) # http://developer.download.nvidia.com/opengl/includes/wglext.h:353
|
|
288
|
-
# ARB_buffer_region (http://developer.download.nvidia.com/opengl/includes/wglext.h:356)
|
|
289
|
-
WGL_ARB_buffer_region = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:357
|
|
290
|
-
|
|
291
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:359
|
|
292
|
-
wglCreateBufferRegionARB = _link_function('wglCreateBufferRegionARB', HANDLE, [HDC, c_int, UINT], 'ARB_buffer_region')
|
|
293
|
-
|
|
294
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:360
|
|
295
|
-
wglDeleteBufferRegionARB = _link_function('wglDeleteBufferRegionARB', VOID, [HANDLE], 'ARB_buffer_region')
|
|
296
|
-
|
|
297
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:361
|
|
298
|
-
wglSaveBufferRegionARB = _link_function('wglSaveBufferRegionARB', BOOL, [HANDLE, c_int, c_int, c_int, c_int], 'ARB_buffer_region')
|
|
299
|
-
|
|
300
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:362
|
|
301
|
-
wglRestoreBufferRegionARB = _link_function('wglRestoreBufferRegionARB', BOOL, [HANDLE, c_int, c_int, c_int, c_int, c_int, c_int], 'ARB_buffer_region')
|
|
302
|
-
|
|
303
|
-
PFNWGLCREATEBUFFERREGIONARBPROC = CFUNCTYPE(HANDLE, HDC, c_int, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:364
|
|
304
|
-
PFNWGLDELETEBUFFERREGIONARBPROC = CFUNCTYPE(VOID, HANDLE) # http://developer.download.nvidia.com/opengl/includes/wglext.h:365
|
|
305
|
-
PFNWGLSAVEBUFFERREGIONARBPROC = CFUNCTYPE(BOOL, HANDLE, c_int, c_int, c_int, c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:366
|
|
306
|
-
PFNWGLRESTOREBUFFERREGIONARBPROC = CFUNCTYPE(BOOL, HANDLE, c_int, c_int, c_int, c_int, c_int, c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:367
|
|
307
|
-
# ARB_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:370)
|
|
308
|
-
WGL_ARB_multisample = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:371
|
|
309
|
-
# ARB_extensions_string (http://developer.download.nvidia.com/opengl/includes/wglext.h:374)
|
|
310
|
-
WGL_ARB_extensions_string = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:375
|
|
311
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:377
|
|
312
|
-
wglGetExtensionsStringARB = _link_function('wglGetExtensionsStringARB', c_char_p, [HDC], 'ARB_extensions_string')
|
|
313
|
-
|
|
314
|
-
PFNWGLGETEXTENSIONSSTRINGARBPROC = CFUNCTYPE(c_char_p, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:379
|
|
315
|
-
# ARB_pixel_format (http://developer.download.nvidia.com/opengl/includes/wglext.h:382)
|
|
316
|
-
WGL_ARB_pixel_format = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:383
|
|
317
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:385
|
|
318
|
-
wglGetPixelFormatAttribivARB = _link_function('wglGetPixelFormatAttribivARB', BOOL, [HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(c_int)], 'ARB_pixel_format')
|
|
319
|
-
|
|
320
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:386
|
|
321
|
-
wglGetPixelFormatAttribfvARB = _link_function('wglGetPixelFormatAttribfvARB', BOOL, [HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(FLOAT)], 'ARB_pixel_format')
|
|
322
|
-
|
|
323
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:387
|
|
324
|
-
wglChoosePixelFormatARB = _link_function('wglChoosePixelFormatARB', BOOL, [HDC, POINTER(c_int), POINTER(FLOAT), UINT, POINTER(c_int), POINTER(UINT)], 'ARB_pixel_format')
|
|
325
|
-
|
|
326
|
-
PFNWGLGETPIXELFORMATATTRIBIVARBPROC = CFUNCTYPE(BOOL, HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:389
|
|
327
|
-
PFNWGLGETPIXELFORMATATTRIBFVARBPROC = CFUNCTYPE(BOOL, HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(FLOAT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:390
|
|
328
|
-
PFNWGLCHOOSEPIXELFORMATARBPROC = CFUNCTYPE(BOOL, HDC, POINTER(c_int), POINTER(FLOAT), UINT, POINTER(c_int), POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:391
|
|
329
|
-
# ARB_make_current_read (http://developer.download.nvidia.com/opengl/includes/wglext.h:394)
|
|
330
|
-
WGL_ARB_make_current_read = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:395
|
|
331
|
-
HGLRC = HANDLE # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:60
|
|
332
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:397
|
|
333
|
-
wglMakeContextCurrentARB = _link_function('wglMakeContextCurrentARB', BOOL, [HDC, HDC, HGLRC], 'ARB_make_current_read')
|
|
334
|
-
|
|
335
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:398
|
|
336
|
-
wglGetCurrentReadDCARB = _link_function('wglGetCurrentReadDCARB', HDC, [], 'ARB_make_current_read')
|
|
337
|
-
|
|
338
|
-
PFNWGLMAKECONTEXTCURRENTARBPROC = CFUNCTYPE(BOOL, HDC, HDC, HGLRC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:400
|
|
339
|
-
PFNWGLGETCURRENTREADDCARBPROC = CFUNCTYPE(HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:401
|
|
340
|
-
# ARB_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:404)
|
|
341
|
-
WGL_ARB_pbuffer = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:405
|
|
342
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:407
|
|
343
|
-
wglCreatePbufferARB = _link_function('wglCreatePbufferARB', HPBUFFERARB, [HDC, c_int, c_int, c_int, POINTER(c_int)], 'ARB_pbuffer')
|
|
344
|
-
|
|
345
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:408
|
|
346
|
-
wglGetPbufferDCARB = _link_function('wglGetPbufferDCARB', HDC, [HPBUFFERARB], 'ARB_pbuffer')
|
|
347
|
-
|
|
348
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:409
|
|
349
|
-
wglReleasePbufferDCARB = _link_function('wglReleasePbufferDCARB', c_int, [HPBUFFERARB, HDC], 'ARB_pbuffer')
|
|
350
|
-
|
|
351
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:410
|
|
352
|
-
wglDestroyPbufferARB = _link_function('wglDestroyPbufferARB', BOOL, [HPBUFFERARB], 'ARB_pbuffer')
|
|
353
|
-
|
|
354
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:411
|
|
355
|
-
wglQueryPbufferARB = _link_function('wglQueryPbufferARB', BOOL, [HPBUFFERARB, c_int, POINTER(c_int)], 'ARB_pbuffer')
|
|
356
|
-
|
|
357
|
-
PFNWGLCREATEPBUFFERARBPROC = CFUNCTYPE(HPBUFFERARB, HDC, c_int, c_int, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:413
|
|
358
|
-
PFNWGLGETPBUFFERDCARBPROC = CFUNCTYPE(HDC, HPBUFFERARB) # http://developer.download.nvidia.com/opengl/includes/wglext.h:414
|
|
359
|
-
PFNWGLRELEASEPBUFFERDCARBPROC = CFUNCTYPE(c_int, HPBUFFERARB, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:415
|
|
360
|
-
PFNWGLDESTROYPBUFFERARBPROC = CFUNCTYPE(BOOL, HPBUFFERARB) # http://developer.download.nvidia.com/opengl/includes/wglext.h:416
|
|
361
|
-
PFNWGLQUERYPBUFFERARBPROC = CFUNCTYPE(BOOL, HPBUFFERARB, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:417
|
|
362
|
-
# ARB_render_texture (http://developer.download.nvidia.com/opengl/includes/wglext.h:420)
|
|
363
|
-
WGL_ARB_render_texture = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:421
|
|
364
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:423
|
|
365
|
-
wglBindTexImageARB = _link_function('wglBindTexImageARB', BOOL, [HPBUFFERARB, c_int], 'ARB_render_texture')
|
|
366
|
-
|
|
367
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:424
|
|
368
|
-
wglReleaseTexImageARB = _link_function('wglReleaseTexImageARB', BOOL, [HPBUFFERARB, c_int], 'ARB_render_texture')
|
|
369
|
-
|
|
370
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:425
|
|
371
|
-
wglSetPbufferAttribARB = _link_function('wglSetPbufferAttribARB', BOOL, [HPBUFFERARB, POINTER(c_int)], 'ARB_render_texture')
|
|
372
|
-
|
|
373
|
-
PFNWGLBINDTEXIMAGEARBPROC = CFUNCTYPE(BOOL, HPBUFFERARB, c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:427
|
|
374
|
-
PFNWGLRELEASETEXIMAGEARBPROC = CFUNCTYPE(BOOL, HPBUFFERARB, c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:428
|
|
375
|
-
PFNWGLSETPBUFFERATTRIBARBPROC = CFUNCTYPE(BOOL, HPBUFFERARB, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:429
|
|
376
|
-
# ARB_pixel_format_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:432)
|
|
377
|
-
WGL_ARB_pixel_format_float = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:433
|
|
378
|
-
# EXT_display_color_table (http://developer.download.nvidia.com/opengl/includes/wglext.h:436)
|
|
379
|
-
WGL_EXT_display_color_table = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:437
|
|
380
|
-
GLboolean = c_ubyte # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:18
|
|
381
|
-
GLushort = c_ushort # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:25
|
|
382
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:439
|
|
383
|
-
wglCreateDisplayColorTableEXT = _link_function('wglCreateDisplayColorTableEXT', GLboolean, [GLushort], 'EXT_display_color_table')
|
|
384
|
-
|
|
385
|
-
GLuint = c_uint # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:26
|
|
386
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:440
|
|
387
|
-
wglLoadDisplayColorTableEXT = _link_function('wglLoadDisplayColorTableEXT', GLboolean, [POINTER(GLushort), GLuint], 'EXT_display_color_table')
|
|
388
|
-
|
|
389
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:441
|
|
390
|
-
wglBindDisplayColorTableEXT = _link_function('wglBindDisplayColorTableEXT', GLboolean, [GLushort], 'EXT_display_color_table')
|
|
391
|
-
|
|
392
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:442
|
|
393
|
-
wglDestroyDisplayColorTableEXT = _link_function('wglDestroyDisplayColorTableEXT', VOID, [GLushort], 'EXT_display_color_table')
|
|
394
|
-
|
|
395
|
-
PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC = CFUNCTYPE(GLboolean, GLushort) # http://developer.download.nvidia.com/opengl/includes/wglext.h:444
|
|
396
|
-
PFNWGLLOADDISPLAYCOLORTABLEEXTPROC = CFUNCTYPE(GLboolean, POINTER(GLushort), GLuint) # http://developer.download.nvidia.com/opengl/includes/wglext.h:445
|
|
397
|
-
PFNWGLBINDDISPLAYCOLORTABLEEXTPROC = CFUNCTYPE(GLboolean, GLushort) # http://developer.download.nvidia.com/opengl/includes/wglext.h:446
|
|
398
|
-
PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC = CFUNCTYPE(VOID, GLushort) # http://developer.download.nvidia.com/opengl/includes/wglext.h:447
|
|
399
|
-
# EXT_extensions_string (http://developer.download.nvidia.com/opengl/includes/wglext.h:450)
|
|
400
|
-
WGL_EXT_extensions_string = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:451
|
|
401
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:453
|
|
402
|
-
wglGetExtensionsStringEXT = _link_function('wglGetExtensionsStringEXT', c_char_p, [], 'EXT_extensions_string')
|
|
403
|
-
|
|
404
|
-
PFNWGLGETEXTENSIONSSTRINGEXTPROC = CFUNCTYPE(c_char_p) # http://developer.download.nvidia.com/opengl/includes/wglext.h:455
|
|
405
|
-
# EXT_make_current_read (http://developer.download.nvidia.com/opengl/includes/wglext.h:458)
|
|
406
|
-
WGL_EXT_make_current_read = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:459
|
|
407
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:461
|
|
408
|
-
wglMakeContextCurrentEXT = _link_function('wglMakeContextCurrentEXT', BOOL, [HDC, HDC, HGLRC], 'EXT_make_current_read')
|
|
409
|
-
|
|
410
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:462
|
|
411
|
-
wglGetCurrentReadDCEXT = _link_function('wglGetCurrentReadDCEXT', HDC, [], 'EXT_make_current_read')
|
|
412
|
-
|
|
413
|
-
PFNWGLMAKECONTEXTCURRENTEXTPROC = CFUNCTYPE(BOOL, HDC, HDC, HGLRC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:464
|
|
414
|
-
PFNWGLGETCURRENTREADDCEXTPROC = CFUNCTYPE(HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:465
|
|
415
|
-
# EXT_pbuffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:468)
|
|
416
|
-
WGL_EXT_pbuffer = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:469
|
|
417
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:471
|
|
418
|
-
wglCreatePbufferEXT = _link_function('wglCreatePbufferEXT', HPBUFFEREXT, [HDC, c_int, c_int, c_int, POINTER(c_int)], 'EXT_pbuffer')
|
|
419
|
-
|
|
420
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:472
|
|
421
|
-
wglGetPbufferDCEXT = _link_function('wglGetPbufferDCEXT', HDC, [HPBUFFEREXT], 'EXT_pbuffer')
|
|
422
|
-
|
|
423
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:473
|
|
424
|
-
wglReleasePbufferDCEXT = _link_function('wglReleasePbufferDCEXT', c_int, [HPBUFFEREXT, HDC], 'EXT_pbuffer')
|
|
425
|
-
|
|
426
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:474
|
|
427
|
-
wglDestroyPbufferEXT = _link_function('wglDestroyPbufferEXT', BOOL, [HPBUFFEREXT], 'EXT_pbuffer')
|
|
428
|
-
|
|
429
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:475
|
|
430
|
-
wglQueryPbufferEXT = _link_function('wglQueryPbufferEXT', BOOL, [HPBUFFEREXT, c_int, POINTER(c_int)], 'EXT_pbuffer')
|
|
431
|
-
|
|
432
|
-
PFNWGLCREATEPBUFFEREXTPROC = CFUNCTYPE(HPBUFFEREXT, HDC, c_int, c_int, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:477
|
|
433
|
-
PFNWGLGETPBUFFERDCEXTPROC = CFUNCTYPE(HDC, HPBUFFEREXT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:478
|
|
434
|
-
PFNWGLRELEASEPBUFFERDCEXTPROC = CFUNCTYPE(c_int, HPBUFFEREXT, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:479
|
|
435
|
-
PFNWGLDESTROYPBUFFEREXTPROC = CFUNCTYPE(BOOL, HPBUFFEREXT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:480
|
|
436
|
-
PFNWGLQUERYPBUFFEREXTPROC = CFUNCTYPE(BOOL, HPBUFFEREXT, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:481
|
|
437
|
-
# EXT_pixel_format (http://developer.download.nvidia.com/opengl/includes/wglext.h:484)
|
|
438
|
-
WGL_EXT_pixel_format = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:485
|
|
439
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:487
|
|
440
|
-
wglGetPixelFormatAttribivEXT = _link_function('wglGetPixelFormatAttribivEXT', BOOL, [HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(c_int)], 'EXT_pixel_format')
|
|
441
|
-
|
|
442
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:488
|
|
443
|
-
wglGetPixelFormatAttribfvEXT = _link_function('wglGetPixelFormatAttribfvEXT', BOOL, [HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(FLOAT)], 'EXT_pixel_format')
|
|
444
|
-
|
|
445
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:489
|
|
446
|
-
wglChoosePixelFormatEXT = _link_function('wglChoosePixelFormatEXT', BOOL, [HDC, POINTER(c_int), POINTER(FLOAT), UINT, POINTER(c_int), POINTER(UINT)], 'EXT_pixel_format')
|
|
447
|
-
|
|
448
|
-
PFNWGLGETPIXELFORMATATTRIBIVEXTPROC = CFUNCTYPE(BOOL, HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:491
|
|
449
|
-
PFNWGLGETPIXELFORMATATTRIBFVEXTPROC = CFUNCTYPE(BOOL, HDC, c_int, c_int, UINT, POINTER(c_int), POINTER(FLOAT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:492
|
|
450
|
-
PFNWGLCHOOSEPIXELFORMATEXTPROC = CFUNCTYPE(BOOL, HDC, POINTER(c_int), POINTER(FLOAT), UINT, POINTER(c_int), POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:493
|
|
451
|
-
# EXT_swap_control (http://developer.download.nvidia.com/opengl/includes/wglext.h:496)
|
|
452
|
-
WGL_EXT_swap_control = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:497
|
|
453
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:499
|
|
454
|
-
wglSwapIntervalEXT = _link_function('wglSwapIntervalEXT', BOOL, [c_int], 'EXT_swap_control')
|
|
455
|
-
|
|
456
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:500
|
|
457
|
-
wglGetSwapIntervalEXT = _link_function('wglGetSwapIntervalEXT', c_int, [], 'EXT_swap_control')
|
|
458
|
-
|
|
459
|
-
PFNWGLSWAPINTERVALEXTPROC = CFUNCTYPE(BOOL, c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:502
|
|
460
|
-
PFNWGLGETSWAPINTERVALEXTPROC = CFUNCTYPE(c_int) # http://developer.download.nvidia.com/opengl/includes/wglext.h:503
|
|
461
|
-
# EXT_depth_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:506)
|
|
462
|
-
WGL_EXT_depth_float = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:507
|
|
463
|
-
# NV_vertex_array_range (http://developer.download.nvidia.com/opengl/includes/wglext.h:510)
|
|
464
|
-
WGL_NV_vertex_array_range = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:511
|
|
465
|
-
GLsizei = c_int # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:23
|
|
466
|
-
GLfloat = c_float # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:27
|
|
467
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:513
|
|
468
|
-
wglAllocateMemoryNV = _link_function('wglAllocateMemoryNV', POINTER(c_void), [GLsizei, GLfloat, GLfloat, GLfloat], 'NV_vertex_array_range')
|
|
469
|
-
|
|
470
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:514
|
|
471
|
-
wglFreeMemoryNV = _link_function('wglFreeMemoryNV', None, [POINTER(None)], 'NV_vertex_array_range')
|
|
472
|
-
|
|
473
|
-
PFNWGLALLOCATEMEMORYNVPROC = CFUNCTYPE(POINTER(c_void), GLsizei, GLfloat, GLfloat, GLfloat) # http://developer.download.nvidia.com/opengl/includes/wglext.h:516
|
|
474
|
-
PFNWGLFREEMEMORYNVPROC = CFUNCTYPE(None, POINTER(None)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:517
|
|
475
|
-
# 3DFX_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:520)
|
|
476
|
-
WGL_3DFX_multisample = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:521
|
|
477
|
-
# EXT_multisample (http://developer.download.nvidia.com/opengl/includes/wglext.h:524)
|
|
478
|
-
WGL_EXT_multisample = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:525
|
|
479
|
-
# OML_sync_control (http://developer.download.nvidia.com/opengl/includes/wglext.h:528)
|
|
480
|
-
WGL_OML_sync_control = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:529
|
|
481
|
-
|
|
482
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:531
|
|
483
|
-
wglGetSyncValuesOML = _link_function('wglGetSyncValuesOML', BOOL, [HDC, POINTER(INT64), POINTER(INT64), POINTER(INT64)], 'OML_sync_control')
|
|
484
|
-
|
|
485
|
-
INT32 = c_int # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:35
|
|
486
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:532
|
|
487
|
-
wglGetMscRateOML = _link_function('wglGetMscRateOML', BOOL, [HDC, POINTER(INT32), POINTER(INT32)], 'OML_sync_control')
|
|
488
|
-
|
|
489
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:533
|
|
490
|
-
wglSwapBuffersMscOML = _link_function('wglSwapBuffersMscOML', INT64, [HDC, INT64, INT64, INT64], 'OML_sync_control')
|
|
491
|
-
|
|
492
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:534
|
|
493
|
-
wglSwapLayerBuffersMscOML = _link_function('wglSwapLayerBuffersMscOML', INT64, [HDC, c_int, INT64, INT64, INT64], 'OML_sync_control')
|
|
494
|
-
|
|
495
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:535
|
|
496
|
-
wglWaitForMscOML = _link_function('wglWaitForMscOML', BOOL, [HDC, INT64, INT64, INT64, POINTER(INT64), POINTER(INT64), POINTER(INT64)], 'OML_sync_control')
|
|
497
|
-
|
|
498
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:536
|
|
499
|
-
wglWaitForSbcOML = _link_function('wglWaitForSbcOML', BOOL, [HDC, INT64, POINTER(INT64), POINTER(INT64), POINTER(INT64)], 'OML_sync_control')
|
|
500
|
-
|
|
501
|
-
PFNWGLGETSYNCVALUESOMLPROC = CFUNCTYPE(BOOL, HDC, POINTER(INT64), POINTER(INT64), POINTER(INT64)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:538
|
|
502
|
-
PFNWGLGETMSCRATEOMLPROC = CFUNCTYPE(BOOL, HDC, POINTER(INT32), POINTER(INT32)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:539
|
|
503
|
-
PFNWGLSWAPBUFFERSMSCOMLPROC = CFUNCTYPE(INT64, HDC, INT64, INT64, INT64) # http://developer.download.nvidia.com/opengl/includes/wglext.h:540
|
|
504
|
-
PFNWGLSWAPLAYERBUFFERSMSCOMLPROC = CFUNCTYPE(INT64, HDC, c_int, INT64, INT64, INT64) # http://developer.download.nvidia.com/opengl/includes/wglext.h:541
|
|
505
|
-
PFNWGLWAITFORMSCOMLPROC = CFUNCTYPE(BOOL, HDC, INT64, INT64, INT64, POINTER(INT64), POINTER(INT64), POINTER(INT64)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:542
|
|
506
|
-
PFNWGLWAITFORSBCOMLPROC = CFUNCTYPE(BOOL, HDC, INT64, POINTER(INT64), POINTER(INT64), POINTER(INT64)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:543
|
|
507
|
-
# I3D_digital_video_control (http://developer.download.nvidia.com/opengl/includes/wglext.h:546)
|
|
508
|
-
WGL_I3D_digital_video_control = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:547
|
|
509
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:549
|
|
510
|
-
wglGetDigitalVideoParametersI3D = _link_function('wglGetDigitalVideoParametersI3D', BOOL, [HDC, c_int, POINTER(c_int)], 'I3D_digital_video_control')
|
|
511
|
-
|
|
512
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:550
|
|
513
|
-
wglSetDigitalVideoParametersI3D = _link_function('wglSetDigitalVideoParametersI3D', BOOL, [HDC, c_int, POINTER(c_int)], 'I3D_digital_video_control')
|
|
514
|
-
|
|
515
|
-
PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:552
|
|
516
|
-
PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:553
|
|
517
|
-
# I3D_gamma (http://developer.download.nvidia.com/opengl/includes/wglext.h:556)
|
|
518
|
-
WGL_I3D_gamma = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:557
|
|
519
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:559
|
|
520
|
-
wglGetGammaTableParametersI3D = _link_function('wglGetGammaTableParametersI3D', BOOL, [HDC, c_int, POINTER(c_int)], 'I3D_gamma')
|
|
521
|
-
|
|
522
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:560
|
|
523
|
-
wglSetGammaTableParametersI3D = _link_function('wglSetGammaTableParametersI3D', BOOL, [HDC, c_int, POINTER(c_int)], 'I3D_gamma')
|
|
524
|
-
|
|
525
|
-
USHORT = c_ushort # C:\cygwin\home\alex\projects\pyglet\tools\wgl.h:49
|
|
526
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:561
|
|
527
|
-
wglGetGammaTableI3D = _link_function('wglGetGammaTableI3D', BOOL, [HDC, c_int, POINTER(USHORT), POINTER(USHORT), POINTER(USHORT)], 'I3D_gamma')
|
|
528
|
-
|
|
529
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:562
|
|
530
|
-
wglSetGammaTableI3D = _link_function('wglSetGammaTableI3D', BOOL, [HDC, c_int, POINTER(USHORT), POINTER(USHORT), POINTER(USHORT)], 'I3D_gamma')
|
|
531
|
-
|
|
532
|
-
PFNWGLGETGAMMATABLEPARAMETERSI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:564
|
|
533
|
-
PFNWGLSETGAMMATABLEPARAMETERSI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(c_int)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:565
|
|
534
|
-
PFNWGLGETGAMMATABLEI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(USHORT), POINTER(USHORT), POINTER(USHORT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:566
|
|
535
|
-
PFNWGLSETGAMMATABLEI3DPROC = CFUNCTYPE(BOOL, HDC, c_int, POINTER(USHORT), POINTER(USHORT), POINTER(USHORT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:567
|
|
536
|
-
# I3D_genlock (http://developer.download.nvidia.com/opengl/includes/wglext.h:570)
|
|
537
|
-
WGL_I3D_genlock = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:571
|
|
538
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:573
|
|
539
|
-
wglEnableGenlockI3D = _link_function('wglEnableGenlockI3D', BOOL, [HDC], 'I3D_genlock')
|
|
540
|
-
|
|
541
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:574
|
|
542
|
-
wglDisableGenlockI3D = _link_function('wglDisableGenlockI3D', BOOL, [HDC], 'I3D_genlock')
|
|
543
|
-
|
|
544
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:575
|
|
545
|
-
wglIsEnabledGenlockI3D = _link_function('wglIsEnabledGenlockI3D', BOOL, [HDC, POINTER(BOOL)], 'I3D_genlock')
|
|
546
|
-
|
|
547
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:576
|
|
548
|
-
wglGenlockSourceI3D = _link_function('wglGenlockSourceI3D', BOOL, [HDC, UINT], 'I3D_genlock')
|
|
549
|
-
|
|
550
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:577
|
|
551
|
-
wglGetGenlockSourceI3D = _link_function('wglGetGenlockSourceI3D', BOOL, [HDC, POINTER(UINT)], 'I3D_genlock')
|
|
552
|
-
|
|
553
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:578
|
|
554
|
-
wglGenlockSourceEdgeI3D = _link_function('wglGenlockSourceEdgeI3D', BOOL, [HDC, UINT], 'I3D_genlock')
|
|
555
|
-
|
|
556
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:579
|
|
557
|
-
wglGetGenlockSourceEdgeI3D = _link_function('wglGetGenlockSourceEdgeI3D', BOOL, [HDC, POINTER(UINT)], 'I3D_genlock')
|
|
558
|
-
|
|
559
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:580
|
|
560
|
-
wglGenlockSampleRateI3D = _link_function('wglGenlockSampleRateI3D', BOOL, [HDC, UINT], 'I3D_genlock')
|
|
561
|
-
|
|
562
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:581
|
|
563
|
-
wglGetGenlockSampleRateI3D = _link_function('wglGetGenlockSampleRateI3D', BOOL, [HDC, POINTER(UINT)], 'I3D_genlock')
|
|
564
|
-
|
|
565
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:582
|
|
566
|
-
wglGenlockSourceDelayI3D = _link_function('wglGenlockSourceDelayI3D', BOOL, [HDC, UINT], 'I3D_genlock')
|
|
567
|
-
|
|
568
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:583
|
|
569
|
-
wglGetGenlockSourceDelayI3D = _link_function('wglGetGenlockSourceDelayI3D', BOOL, [HDC, POINTER(UINT)], 'I3D_genlock')
|
|
570
|
-
|
|
571
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:584
|
|
572
|
-
wglQueryGenlockMaxSourceDelayI3D = _link_function('wglQueryGenlockMaxSourceDelayI3D', BOOL, [HDC, POINTER(UINT), POINTER(UINT)], 'I3D_genlock')
|
|
573
|
-
|
|
574
|
-
PFNWGLENABLEGENLOCKI3DPROC = CFUNCTYPE(BOOL, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:586
|
|
575
|
-
PFNWGLDISABLEGENLOCKI3DPROC = CFUNCTYPE(BOOL, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:587
|
|
576
|
-
PFNWGLISENABLEDGENLOCKI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(BOOL)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:588
|
|
577
|
-
PFNWGLGENLOCKSOURCEI3DPROC = CFUNCTYPE(BOOL, HDC, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:589
|
|
578
|
-
PFNWGLGETGENLOCKSOURCEI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:590
|
|
579
|
-
PFNWGLGENLOCKSOURCEEDGEI3DPROC = CFUNCTYPE(BOOL, HDC, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:591
|
|
580
|
-
PFNWGLGETGENLOCKSOURCEEDGEI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:592
|
|
581
|
-
PFNWGLGENLOCKSAMPLERATEI3DPROC = CFUNCTYPE(BOOL, HDC, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:593
|
|
582
|
-
PFNWGLGETGENLOCKSAMPLERATEI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:594
|
|
583
|
-
PFNWGLGENLOCKSOURCEDELAYI3DPROC = CFUNCTYPE(BOOL, HDC, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:595
|
|
584
|
-
PFNWGLGETGENLOCKSOURCEDELAYI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:596
|
|
585
|
-
PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(UINT), POINTER(UINT)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:597
|
|
586
|
-
# I3D_image_buffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:600)
|
|
587
|
-
WGL_I3D_image_buffer = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:601
|
|
588
|
-
|
|
589
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:603
|
|
590
|
-
wglCreateImageBufferI3D = _link_function('wglCreateImageBufferI3D', LPVOID, [HDC, DWORD, UINT], 'I3D_image_buffer')
|
|
591
|
-
|
|
592
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:604
|
|
593
|
-
wglDestroyImageBufferI3D = _link_function('wglDestroyImageBufferI3D', BOOL, [HDC, LPVOID], 'I3D_image_buffer')
|
|
594
|
-
|
|
595
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:605
|
|
596
|
-
wglAssociateImageBufferEventsI3D = _link_function('wglAssociateImageBufferEventsI3D', BOOL, [HDC, POINTER(HANDLE), POINTER(LPVOID), POINTER(DWORD), UINT], 'I3D_image_buffer')
|
|
597
|
-
|
|
598
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:606
|
|
599
|
-
wglReleaseImageBufferEventsI3D = _link_function('wglReleaseImageBufferEventsI3D', BOOL, [HDC, POINTER(LPVOID), UINT], 'I3D_image_buffer')
|
|
600
|
-
|
|
601
|
-
PFNWGLCREATEIMAGEBUFFERI3DPROC = CFUNCTYPE(LPVOID, HDC, DWORD, UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:608
|
|
602
|
-
PFNWGLDESTROYIMAGEBUFFERI3DPROC = CFUNCTYPE(BOOL, HDC, LPVOID) # http://developer.download.nvidia.com/opengl/includes/wglext.h:609
|
|
603
|
-
PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(HANDLE), POINTER(LPVOID), POINTER(DWORD), UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:610
|
|
604
|
-
PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC = CFUNCTYPE(BOOL, HDC, POINTER(LPVOID), UINT) # http://developer.download.nvidia.com/opengl/includes/wglext.h:611
|
|
605
|
-
# I3D_swap_frame_lock (http://developer.download.nvidia.com/opengl/includes/wglext.h:614)
|
|
606
|
-
WGL_I3D_swap_frame_lock = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:615
|
|
607
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:617
|
|
608
|
-
wglEnableFrameLockI3D = _link_function('wglEnableFrameLockI3D', BOOL, [], 'I3D_swap_frame_lock')
|
|
609
|
-
|
|
610
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:618
|
|
611
|
-
wglDisableFrameLockI3D = _link_function('wglDisableFrameLockI3D', BOOL, [], 'I3D_swap_frame_lock')
|
|
612
|
-
|
|
613
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:619
|
|
614
|
-
wglIsEnabledFrameLockI3D = _link_function('wglIsEnabledFrameLockI3D', BOOL, [POINTER(BOOL)], 'I3D_swap_frame_lock')
|
|
615
|
-
|
|
616
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:620
|
|
617
|
-
wglQueryFrameLockMasterI3D = _link_function('wglQueryFrameLockMasterI3D', BOOL, [POINTER(BOOL)], 'I3D_swap_frame_lock')
|
|
618
|
-
|
|
619
|
-
PFNWGLENABLEFRAMELOCKI3DPROC = CFUNCTYPE(BOOL) # http://developer.download.nvidia.com/opengl/includes/wglext.h:622
|
|
620
|
-
PFNWGLDISABLEFRAMELOCKI3DPROC = CFUNCTYPE(BOOL) # http://developer.download.nvidia.com/opengl/includes/wglext.h:623
|
|
621
|
-
PFNWGLISENABLEDFRAMELOCKI3DPROC = CFUNCTYPE(BOOL, POINTER(BOOL)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:624
|
|
622
|
-
PFNWGLQUERYFRAMELOCKMASTERI3DPROC = CFUNCTYPE(BOOL, POINTER(BOOL)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:625
|
|
623
|
-
# I3D_swap_frame_usage (http://developer.download.nvidia.com/opengl/includes/wglext.h:628)
|
|
624
|
-
WGL_I3D_swap_frame_usage = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:629
|
|
625
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:631
|
|
626
|
-
wglGetFrameUsageI3D = _link_function('wglGetFrameUsageI3D', BOOL, [POINTER(c_float)], 'I3D_swap_frame_usage')
|
|
627
|
-
|
|
628
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:632
|
|
629
|
-
wglBeginFrameTrackingI3D = _link_function('wglBeginFrameTrackingI3D', BOOL, [], 'I3D_swap_frame_usage')
|
|
630
|
-
|
|
631
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:633
|
|
632
|
-
wglEndFrameTrackingI3D = _link_function('wglEndFrameTrackingI3D', BOOL, [], 'I3D_swap_frame_usage')
|
|
633
|
-
|
|
634
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:634
|
|
635
|
-
wglQueryFrameTrackingI3D = _link_function('wglQueryFrameTrackingI3D', BOOL, [POINTER(DWORD), POINTER(DWORD), POINTER(c_float)], 'I3D_swap_frame_usage')
|
|
636
|
-
|
|
637
|
-
PFNWGLGETFRAMEUSAGEI3DPROC = CFUNCTYPE(BOOL, POINTER(c_float)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:636
|
|
638
|
-
PFNWGLBEGINFRAMETRACKINGI3DPROC = CFUNCTYPE(BOOL) # http://developer.download.nvidia.com/opengl/includes/wglext.h:637
|
|
639
|
-
PFNWGLENDFRAMETRACKINGI3DPROC = CFUNCTYPE(BOOL) # http://developer.download.nvidia.com/opengl/includes/wglext.h:638
|
|
640
|
-
PFNWGLQUERYFRAMETRACKINGI3DPROC = CFUNCTYPE(BOOL, POINTER(DWORD), POINTER(DWORD), POINTER(c_float)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:639
|
|
641
|
-
# ATI_pixel_format_float (http://developer.download.nvidia.com/opengl/includes/wglext.h:642)
|
|
642
|
-
WGL_ATI_pixel_format_float = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:643
|
|
643
|
-
# NV_render_depth_texture (http://developer.download.nvidia.com/opengl/includes/wglext.h:646)
|
|
644
|
-
WGL_NV_render_depth_texture = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:647
|
|
645
|
-
# NV_render_texture_rectangle (http://developer.download.nvidia.com/opengl/includes/wglext.h:650)
|
|
646
|
-
WGL_NV_render_texture_rectangle = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:651
|
|
647
|
-
# NV_float_buffer (http://developer.download.nvidia.com/opengl/includes/wglext.h:654)
|
|
648
|
-
WGL_NV_float_buffer = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:655
|
|
649
|
-
# NV_swap_group (http://developer.download.nvidia.com/opengl/includes/wglext.h:658)
|
|
650
|
-
WGL_NV_swap_group = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:659
|
|
651
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:661
|
|
652
|
-
wglJoinSwapGroupNV = _link_function('wglJoinSwapGroupNV', BOOL, [HDC, GLuint], 'NV_swap_group')
|
|
653
|
-
|
|
654
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:662
|
|
655
|
-
wglBindSwapBarrierNV = _link_function('wglBindSwapBarrierNV', BOOL, [GLuint, GLuint], 'NV_swap_group')
|
|
656
|
-
|
|
657
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:663
|
|
658
|
-
wglQuerySwapGroupNV = _link_function('wglQuerySwapGroupNV', BOOL, [HDC, POINTER(GLuint), POINTER(GLuint)], 'NV_swap_group')
|
|
659
|
-
|
|
660
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:664
|
|
661
|
-
wglQueryMaxSwapGroupsNV = _link_function('wglQueryMaxSwapGroupsNV', BOOL, [HDC, POINTER(GLuint), POINTER(GLuint)], 'NV_swap_group')
|
|
662
|
-
|
|
663
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:665
|
|
664
|
-
wglQueryFrameCountNV = _link_function('wglQueryFrameCountNV', BOOL, [HDC, POINTER(GLuint)], 'NV_swap_group')
|
|
665
|
-
|
|
666
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:666
|
|
667
|
-
wglResetFrameCountNV = _link_function('wglResetFrameCountNV', BOOL, [HDC], 'NV_swap_group')
|
|
668
|
-
|
|
669
|
-
PFNWGLJOINSWAPGROUPNVPROC = CFUNCTYPE(BOOL, HDC, GLuint) # http://developer.download.nvidia.com/opengl/includes/wglext.h:668
|
|
670
|
-
PFNWGLBINDSWAPBARRIERNVPROC = CFUNCTYPE(BOOL, GLuint, GLuint) # http://developer.download.nvidia.com/opengl/includes/wglext.h:669
|
|
671
|
-
PFNWGLQUERYSWAPGROUPNVPROC = CFUNCTYPE(BOOL, HDC, POINTER(GLuint), POINTER(GLuint)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:670
|
|
672
|
-
PFNWGLQUERYMAXSWAPGROUPSNVPROC = CFUNCTYPE(BOOL, HDC, POINTER(GLuint), POINTER(GLuint)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:671
|
|
673
|
-
PFNWGLQUERYFRAMECOUNTNVPROC = CFUNCTYPE(BOOL, HDC, POINTER(GLuint)) # http://developer.download.nvidia.com/opengl/includes/wglext.h:672
|
|
674
|
-
PFNWGLRESETFRAMECOUNTNVPROC = CFUNCTYPE(BOOL, HDC) # http://developer.download.nvidia.com/opengl/includes/wglext.h:673
|
|
675
|
-
# NV_gpu_affinity (http://developer.download.nvidia.com/opengl/includes/wglext.h:676)
|
|
676
|
-
WGL_NV_gpu_affinity = 1 # http://developer.download.nvidia.com/opengl/includes/wglext.h:677
|
|
677
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:679
|
|
678
|
-
wglEnumGpusNV = _link_function('wglEnumGpusNV', BOOL, [UINT, POINTER(HGPUNV)], 'NV_gpu_affinity')
|
|
679
|
-
|
|
680
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:680
|
|
681
|
-
wglEnumGpuDevicesNV = _link_function('wglEnumGpuDevicesNV', BOOL, [HGPUNV, UINT, PGPU_DEVICE], 'NV_gpu_affinity')
|
|
682
|
-
|
|
683
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:681
|
|
684
|
-
wglCreateAffinityDCNV = _link_function('wglCreateAffinityDCNV', HDC, [POINTER(HGPUNV)], 'NV_gpu_affinity')
|
|
685
|
-
|
|
686
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:682
|
|
687
|
-
wglEnumGpusFromAffinityDCNV = _link_function('wglEnumGpusFromAffinityDCNV', BOOL, [HDC, UINT, POINTER(HGPUNV)], 'NV_gpu_affinity')
|
|
688
|
-
|
|
689
|
-
# http://developer.download.nvidia.com/opengl/includes/wglext.h:683
|
|
690
|
-
wglDeleteDCNV = _link_function('wglDeleteDCNV', BOOL, [HDC], 'NV_gpu_affinity')
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
__all__ = [
|
|
694
|
-
'ERROR_INCOMPATIBLE_DEVICE_CONTEXTS_ARB',
|
|
695
|
-
'ERROR_INVALID_PIXEL_TYPE_ARB',
|
|
696
|
-
'ERROR_INVALID_PIXEL_TYPE_EXT',
|
|
697
|
-
'GPU_DEVICE',
|
|
698
|
-
'HGPUNV',
|
|
699
|
-
'HPBUFFERARB',
|
|
700
|
-
'HPBUFFEREXT',
|
|
701
|
-
'PFNWGLALLOCATEMEMORYNVPROC',
|
|
702
|
-
'PFNWGLASSOCIATEIMAGEBUFFEREVENTSI3DPROC',
|
|
703
|
-
'PFNWGLBEGINFRAMETRACKINGI3DPROC',
|
|
704
|
-
'PFNWGLBINDDISPLAYCOLORTABLEEXTPROC',
|
|
705
|
-
'PFNWGLBINDSWAPBARRIERNVPROC',
|
|
706
|
-
'PFNWGLBINDTEXIMAGEARBPROC',
|
|
707
|
-
'PFNWGLCHOOSEPIXELFORMATARBPROC',
|
|
708
|
-
'PFNWGLCHOOSEPIXELFORMATEXTPROC',
|
|
709
|
-
'PFNWGLCREATEBUFFERREGIONARBPROC',
|
|
710
|
-
'PFNWGLCREATEDISPLAYCOLORTABLEEXTPROC',
|
|
711
|
-
'PFNWGLCREATEIMAGEBUFFERI3DPROC',
|
|
712
|
-
'PFNWGLCREATEPBUFFERARBPROC',
|
|
713
|
-
'PFNWGLCREATEPBUFFEREXTPROC',
|
|
714
|
-
'PFNWGLDELETEBUFFERREGIONARBPROC',
|
|
715
|
-
'PFNWGLDESTROYDISPLAYCOLORTABLEEXTPROC',
|
|
716
|
-
'PFNWGLDESTROYIMAGEBUFFERI3DPROC',
|
|
717
|
-
'PFNWGLDESTROYPBUFFERARBPROC',
|
|
718
|
-
'PFNWGLDESTROYPBUFFEREXTPROC',
|
|
719
|
-
'PFNWGLDISABLEFRAMELOCKI3DPROC',
|
|
720
|
-
'PFNWGLDISABLEGENLOCKI3DPROC',
|
|
721
|
-
'PFNWGLENABLEFRAMELOCKI3DPROC',
|
|
722
|
-
'PFNWGLENABLEGENLOCKI3DPROC',
|
|
723
|
-
'PFNWGLENDFRAMETRACKINGI3DPROC',
|
|
724
|
-
'PFNWGLFREEMEMORYNVPROC',
|
|
725
|
-
'PFNWGLGENLOCKSAMPLERATEI3DPROC',
|
|
726
|
-
'PFNWGLGENLOCKSOURCEDELAYI3DPROC',
|
|
727
|
-
'PFNWGLGENLOCKSOURCEEDGEI3DPROC',
|
|
728
|
-
'PFNWGLGENLOCKSOURCEI3DPROC',
|
|
729
|
-
'PFNWGLGETCURRENTREADDCARBPROC',
|
|
730
|
-
'PFNWGLGETCURRENTREADDCEXTPROC',
|
|
731
|
-
'PFNWGLGETDIGITALVIDEOPARAMETERSI3DPROC',
|
|
732
|
-
'PFNWGLGETEXTENSIONSSTRINGARBPROC',
|
|
733
|
-
'PFNWGLGETEXTENSIONSSTRINGEXTPROC',
|
|
734
|
-
'PFNWGLGETFRAMEUSAGEI3DPROC',
|
|
735
|
-
'PFNWGLGETGAMMATABLEI3DPROC',
|
|
736
|
-
'PFNWGLGETGAMMATABLEPARAMETERSI3DPROC',
|
|
737
|
-
'PFNWGLGETGENLOCKSAMPLERATEI3DPROC',
|
|
738
|
-
'PFNWGLGETGENLOCKSOURCEDELAYI3DPROC',
|
|
739
|
-
'PFNWGLGETGENLOCKSOURCEEDGEI3DPROC',
|
|
740
|
-
'PFNWGLGETGENLOCKSOURCEI3DPROC',
|
|
741
|
-
'PFNWGLGETMSCRATEOMLPROC',
|
|
742
|
-
'PFNWGLGETPBUFFERDCARBPROC',
|
|
743
|
-
'PFNWGLGETPBUFFERDCEXTPROC',
|
|
744
|
-
'PFNWGLGETPIXELFORMATATTRIBFVARBPROC',
|
|
745
|
-
'PFNWGLGETPIXELFORMATATTRIBFVEXTPROC',
|
|
746
|
-
'PFNWGLGETPIXELFORMATATTRIBIVARBPROC',
|
|
747
|
-
'PFNWGLGETPIXELFORMATATTRIBIVEXTPROC',
|
|
748
|
-
'PFNWGLGETSWAPINTERVALEXTPROC',
|
|
749
|
-
'PFNWGLGETSYNCVALUESOMLPROC',
|
|
750
|
-
'PFNWGLISENABLEDFRAMELOCKI3DPROC',
|
|
751
|
-
'PFNWGLISENABLEDGENLOCKI3DPROC',
|
|
752
|
-
'PFNWGLJOINSWAPGROUPNVPROC',
|
|
753
|
-
'PFNWGLLOADDISPLAYCOLORTABLEEXTPROC',
|
|
754
|
-
'PFNWGLMAKECONTEXTCURRENTARBPROC',
|
|
755
|
-
'PFNWGLMAKECONTEXTCURRENTEXTPROC',
|
|
756
|
-
'PFNWGLQUERYFRAMECOUNTNVPROC',
|
|
757
|
-
'PFNWGLQUERYFRAMELOCKMASTERI3DPROC',
|
|
758
|
-
'PFNWGLQUERYFRAMETRACKINGI3DPROC',
|
|
759
|
-
'PFNWGLQUERYGENLOCKMAXSOURCEDELAYI3DPROC',
|
|
760
|
-
'PFNWGLQUERYMAXSWAPGROUPSNVPROC',
|
|
761
|
-
'PFNWGLQUERYPBUFFERARBPROC',
|
|
762
|
-
'PFNWGLQUERYPBUFFEREXTPROC',
|
|
763
|
-
'PFNWGLQUERYSWAPGROUPNVPROC',
|
|
764
|
-
'PFNWGLRELEASEIMAGEBUFFEREVENTSI3DPROC',
|
|
765
|
-
'PFNWGLRELEASEPBUFFERDCARBPROC',
|
|
766
|
-
'PFNWGLRELEASEPBUFFERDCEXTPROC',
|
|
767
|
-
'PFNWGLRELEASETEXIMAGEARBPROC',
|
|
768
|
-
'PFNWGLRESETFRAMECOUNTNVPROC',
|
|
769
|
-
'PFNWGLRESTOREBUFFERREGIONARBPROC',
|
|
770
|
-
'PFNWGLSAVEBUFFERREGIONARBPROC',
|
|
771
|
-
'PFNWGLSETDIGITALVIDEOPARAMETERSI3DPROC',
|
|
772
|
-
'PFNWGLSETGAMMATABLEI3DPROC',
|
|
773
|
-
'PFNWGLSETGAMMATABLEPARAMETERSI3DPROC',
|
|
774
|
-
'PFNWGLSETPBUFFERATTRIBARBPROC',
|
|
775
|
-
'PFNWGLSWAPBUFFERSMSCOMLPROC',
|
|
776
|
-
'PFNWGLSWAPINTERVALEXTPROC',
|
|
777
|
-
'PFNWGLSWAPLAYERBUFFERSMSCOMLPROC',
|
|
778
|
-
'PFNWGLWAITFORMSCOMLPROC',
|
|
779
|
-
'PFNWGLWAITFORSBCOMLPROC',
|
|
780
|
-
'PGPU_DEVICE',
|
|
781
|
-
'WGL_ACCELERATION_ARB',
|
|
782
|
-
'WGL_ACCELERATION_EXT',
|
|
783
|
-
'WGL_ACCUM_ALPHA_BITS_ARB',
|
|
784
|
-
'WGL_ACCUM_ALPHA_BITS_EXT',
|
|
785
|
-
'WGL_ACCUM_BITS_ARB',
|
|
786
|
-
'WGL_ACCUM_BITS_EXT',
|
|
787
|
-
'WGL_ACCUM_BLUE_BITS_ARB',
|
|
788
|
-
'WGL_ACCUM_BLUE_BITS_EXT',
|
|
789
|
-
'WGL_ACCUM_GREEN_BITS_ARB',
|
|
790
|
-
'WGL_ACCUM_GREEN_BITS_EXT',
|
|
791
|
-
'WGL_ACCUM_RED_BITS_ARB',
|
|
792
|
-
'WGL_ACCUM_RED_BITS_EXT',
|
|
793
|
-
'WGL_ALPHA_BITS_ARB',
|
|
794
|
-
'WGL_ALPHA_BITS_EXT',
|
|
795
|
-
'WGL_ALPHA_SHIFT_ARB',
|
|
796
|
-
'WGL_ALPHA_SHIFT_EXT',
|
|
797
|
-
'WGL_AUX0_ARB',
|
|
798
|
-
'WGL_AUX1_ARB',
|
|
799
|
-
'WGL_AUX2_ARB',
|
|
800
|
-
'WGL_AUX3_ARB',
|
|
801
|
-
'WGL_AUX4_ARB',
|
|
802
|
-
'WGL_AUX5_ARB',
|
|
803
|
-
'WGL_AUX6_ARB',
|
|
804
|
-
'WGL_AUX7_ARB',
|
|
805
|
-
'WGL_AUX8_ARB',
|
|
806
|
-
'WGL_AUX9_ARB',
|
|
807
|
-
'WGL_AUX_BUFFERS_ARB',
|
|
808
|
-
'WGL_AUX_BUFFERS_EXT',
|
|
809
|
-
'WGL_BACK_COLOR_BUFFER_BIT_ARB',
|
|
810
|
-
'WGL_BACK_LEFT_ARB',
|
|
811
|
-
'WGL_BACK_RIGHT_ARB',
|
|
812
|
-
'WGL_BIND_TO_TEXTURE_DEPTH_NV',
|
|
813
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_DEPTH_NV',
|
|
814
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGBA_NV',
|
|
815
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RGB_NV',
|
|
816
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_RG_NV',
|
|
817
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_FLOAT_R_NV',
|
|
818
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_RGBA_NV',
|
|
819
|
-
'WGL_BIND_TO_TEXTURE_RECTANGLE_RGB_NV',
|
|
820
|
-
'WGL_BIND_TO_TEXTURE_RGBA_ARB',
|
|
821
|
-
'WGL_BIND_TO_TEXTURE_RGB_ARB',
|
|
822
|
-
'WGL_BLUE_BITS_ARB',
|
|
823
|
-
'WGL_BLUE_BITS_EXT',
|
|
824
|
-
'WGL_BLUE_SHIFT_ARB',
|
|
825
|
-
'WGL_BLUE_SHIFT_EXT',
|
|
826
|
-
'WGL_COLOR_BITS_ARB',
|
|
827
|
-
'WGL_COLOR_BITS_EXT',
|
|
828
|
-
'WGL_COLOR_CLEAR_UNCLAMPED_VALUE_ATI',
|
|
829
|
-
'WGL_CUBE_MAP_FACE_ARB',
|
|
830
|
-
'WGL_DEPTH_BITS_ARB',
|
|
831
|
-
'WGL_DEPTH_BITS_EXT',
|
|
832
|
-
'WGL_DEPTH_BUFFER_BIT_ARB',
|
|
833
|
-
'WGL_DEPTH_COMPONENT_NV',
|
|
834
|
-
'WGL_DEPTH_FLOAT_EXT',
|
|
835
|
-
'WGL_DEPTH_TEXTURE_FORMAT_NV',
|
|
836
|
-
'WGL_DIGITAL_VIDEO_CURSOR_ALPHA_FRAMEBUFFER_I3D',
|
|
837
|
-
'WGL_DIGITAL_VIDEO_CURSOR_ALPHA_VALUE_I3D',
|
|
838
|
-
'WGL_DIGITAL_VIDEO_CURSOR_INCLUDED_I3D',
|
|
839
|
-
'WGL_DIGITAL_VIDEO_GAMMA_CORRECTED_I3D',
|
|
840
|
-
'WGL_DOUBLE_BUFFER_ARB',
|
|
841
|
-
'WGL_DOUBLE_BUFFER_EXT',
|
|
842
|
-
'WGL_DRAW_TO_BITMAP_ARB',
|
|
843
|
-
'WGL_DRAW_TO_BITMAP_EXT',
|
|
844
|
-
'WGL_DRAW_TO_PBUFFER_ARB',
|
|
845
|
-
'WGL_DRAW_TO_PBUFFER_EXT',
|
|
846
|
-
'WGL_DRAW_TO_WINDOW_ARB',
|
|
847
|
-
'WGL_DRAW_TO_WINDOW_EXT',
|
|
848
|
-
'WGL_ERROR_INCOMPATIBLE_AFFINITY_MASKS_NV',
|
|
849
|
-
'WGL_ERROR_MISSING_AFFINITY_MASK_NV',
|
|
850
|
-
'WGL_FLOAT_COMPONENTS_NV',
|
|
851
|
-
'WGL_FRONT_COLOR_BUFFER_BIT_ARB',
|
|
852
|
-
'WGL_FRONT_LEFT_ARB',
|
|
853
|
-
'WGL_FRONT_RIGHT_ARB',
|
|
854
|
-
'WGL_FULL_ACCELERATION_ARB',
|
|
855
|
-
'WGL_FULL_ACCELERATION_EXT',
|
|
856
|
-
'WGL_GAMMA_EXCLUDE_DESKTOP_I3D',
|
|
857
|
-
'WGL_GAMMA_TABLE_SIZE_I3D',
|
|
858
|
-
'WGL_GENERIC_ACCELERATION_ARB',
|
|
859
|
-
'WGL_GENERIC_ACCELERATION_EXT',
|
|
860
|
-
'WGL_GENLOCK_SOURCE_DIGITAL_FIELD_I3D',
|
|
861
|
-
'WGL_GENLOCK_SOURCE_DIGITAL_SYNC_I3D',
|
|
862
|
-
'WGL_GENLOCK_SOURCE_EDGE_BOTH_I3D',
|
|
863
|
-
'WGL_GENLOCK_SOURCE_EDGE_FALLING_I3D',
|
|
864
|
-
'WGL_GENLOCK_SOURCE_EDGE_RISING_I3D',
|
|
865
|
-
'WGL_GENLOCK_SOURCE_EXTENAL_FIELD_I3D',
|
|
866
|
-
'WGL_GENLOCK_SOURCE_EXTENAL_SYNC_I3D',
|
|
867
|
-
'WGL_GENLOCK_SOURCE_EXTENAL_TTL_I3D',
|
|
868
|
-
'WGL_GENLOCK_SOURCE_MULTIVIEW_I3D',
|
|
869
|
-
'WGL_GREEN_BITS_ARB',
|
|
870
|
-
'WGL_GREEN_BITS_EXT',
|
|
871
|
-
'WGL_GREEN_SHIFT_ARB',
|
|
872
|
-
'WGL_GREEN_SHIFT_EXT',
|
|
873
|
-
'WGL_IMAGE_BUFFER_LOCK_I3D',
|
|
874
|
-
'WGL_IMAGE_BUFFER_MIN_ACCESS_I3D',
|
|
875
|
-
'WGL_MAX_PBUFFER_HEIGHT_ARB',
|
|
876
|
-
'WGL_MAX_PBUFFER_HEIGHT_EXT',
|
|
877
|
-
'WGL_MAX_PBUFFER_PIXELS_ARB',
|
|
878
|
-
'WGL_MAX_PBUFFER_PIXELS_EXT',
|
|
879
|
-
'WGL_MAX_PBUFFER_WIDTH_ARB',
|
|
880
|
-
'WGL_MAX_PBUFFER_WIDTH_EXT',
|
|
881
|
-
'WGL_MIPMAP_LEVEL_ARB',
|
|
882
|
-
'WGL_MIPMAP_TEXTURE_ARB',
|
|
883
|
-
'WGL_NEED_PALETTE_ARB',
|
|
884
|
-
'WGL_NEED_PALETTE_EXT',
|
|
885
|
-
'WGL_NEED_SYSTEM_PALETTE_ARB',
|
|
886
|
-
'WGL_NEED_SYSTEM_PALETTE_EXT',
|
|
887
|
-
'WGL_NO_ACCELERATION_ARB',
|
|
888
|
-
'WGL_NO_ACCELERATION_EXT',
|
|
889
|
-
'WGL_NO_TEXTURE_ARB',
|
|
890
|
-
'WGL_NUMBER_OVERLAYS_ARB',
|
|
891
|
-
'WGL_NUMBER_OVERLAYS_EXT',
|
|
892
|
-
'WGL_NUMBER_PIXEL_FORMATS_ARB',
|
|
893
|
-
'WGL_NUMBER_PIXEL_FORMATS_EXT',
|
|
894
|
-
'WGL_NUMBER_UNDERLAYS_ARB',
|
|
895
|
-
'WGL_NUMBER_UNDERLAYS_EXT',
|
|
896
|
-
'WGL_OPTIMAL_PBUFFER_HEIGHT_EXT',
|
|
897
|
-
'WGL_OPTIMAL_PBUFFER_WIDTH_EXT',
|
|
898
|
-
'WGL_PBUFFER_HEIGHT_ARB',
|
|
899
|
-
'WGL_PBUFFER_HEIGHT_EXT',
|
|
900
|
-
'WGL_PBUFFER_LARGEST_ARB',
|
|
901
|
-
'WGL_PBUFFER_LARGEST_EXT',
|
|
902
|
-
'WGL_PBUFFER_LOST_ARB',
|
|
903
|
-
'WGL_PBUFFER_WIDTH_ARB',
|
|
904
|
-
'WGL_PBUFFER_WIDTH_EXT',
|
|
905
|
-
'WGL_PIXEL_TYPE_ARB',
|
|
906
|
-
'WGL_PIXEL_TYPE_EXT',
|
|
907
|
-
'WGL_RED_BITS_ARB',
|
|
908
|
-
'WGL_RED_BITS_EXT',
|
|
909
|
-
'WGL_RED_SHIFT_ARB',
|
|
910
|
-
'WGL_RED_SHIFT_EXT',
|
|
911
|
-
'WGL_RGBA_FLOAT_MODE_ATI',
|
|
912
|
-
'WGL_SAMPLES_3DFX',
|
|
913
|
-
'WGL_SAMPLES_ARB',
|
|
914
|
-
'WGL_SAMPLES_EXT',
|
|
915
|
-
'WGL_SAMPLE_BUFFERS_3DFX',
|
|
916
|
-
'WGL_SAMPLE_BUFFERS_ARB',
|
|
917
|
-
'WGL_SAMPLE_BUFFERS_EXT',
|
|
918
|
-
'WGL_SHARE_ACCUM_ARB',
|
|
919
|
-
'WGL_SHARE_ACCUM_EXT',
|
|
920
|
-
'WGL_SHARE_DEPTH_ARB',
|
|
921
|
-
'WGL_SHARE_DEPTH_EXT',
|
|
922
|
-
'WGL_SHARE_STENCIL_ARB',
|
|
923
|
-
'WGL_SHARE_STENCIL_EXT',
|
|
924
|
-
'WGL_STENCIL_BITS_ARB',
|
|
925
|
-
'WGL_STENCIL_BITS_EXT',
|
|
926
|
-
'WGL_STENCIL_BUFFER_BIT_ARB',
|
|
927
|
-
'WGL_STEREO_ARB',
|
|
928
|
-
'WGL_STEREO_EXT',
|
|
929
|
-
'WGL_SUPPORT_GDI_ARB',
|
|
930
|
-
'WGL_SUPPORT_GDI_EXT',
|
|
931
|
-
'WGL_SUPPORT_OPENGL_ARB',
|
|
932
|
-
'WGL_SUPPORT_OPENGL_EXT',
|
|
933
|
-
'WGL_SWAP_COPY_ARB',
|
|
934
|
-
'WGL_SWAP_COPY_EXT',
|
|
935
|
-
'WGL_SWAP_EXCHANGE_ARB',
|
|
936
|
-
'WGL_SWAP_EXCHANGE_EXT',
|
|
937
|
-
'WGL_SWAP_LAYER_BUFFERS_ARB',
|
|
938
|
-
'WGL_SWAP_LAYER_BUFFERS_EXT',
|
|
939
|
-
'WGL_SWAP_METHOD_ARB',
|
|
940
|
-
'WGL_SWAP_METHOD_EXT',
|
|
941
|
-
'WGL_SWAP_UNDEFINED_ARB',
|
|
942
|
-
'WGL_SWAP_UNDEFINED_EXT',
|
|
943
|
-
'WGL_TEXTURE_1D_ARB',
|
|
944
|
-
'WGL_TEXTURE_2D_ARB',
|
|
945
|
-
'WGL_TEXTURE_CUBE_MAP_ARB',
|
|
946
|
-
'WGL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB',
|
|
947
|
-
'WGL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB',
|
|
948
|
-
'WGL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB',
|
|
949
|
-
'WGL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB',
|
|
950
|
-
'WGL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB',
|
|
951
|
-
'WGL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB',
|
|
952
|
-
'WGL_TEXTURE_DEPTH_COMPONENT_NV',
|
|
953
|
-
'WGL_TEXTURE_FLOAT_RGBA_NV',
|
|
954
|
-
'WGL_TEXTURE_FLOAT_RGB_NV',
|
|
955
|
-
'WGL_TEXTURE_FLOAT_RG_NV',
|
|
956
|
-
'WGL_TEXTURE_FLOAT_R_NV',
|
|
957
|
-
'WGL_TEXTURE_FORMAT_ARB',
|
|
958
|
-
'WGL_TEXTURE_RECTANGLE_NV',
|
|
959
|
-
'WGL_TEXTURE_RGBA_ARB',
|
|
960
|
-
'WGL_TEXTURE_RGB_ARB',
|
|
961
|
-
'WGL_TEXTURE_TARGET_ARB',
|
|
962
|
-
'WGL_TRANSPARENT_ALPHA_VALUE_ARB',
|
|
963
|
-
'WGL_TRANSPARENT_ARB',
|
|
964
|
-
'WGL_TRANSPARENT_BLUE_VALUE_ARB',
|
|
965
|
-
'WGL_TRANSPARENT_EXT',
|
|
966
|
-
'WGL_TRANSPARENT_GREEN_VALUE_ARB',
|
|
967
|
-
'WGL_TRANSPARENT_INDEX_VALUE_ARB',
|
|
968
|
-
'WGL_TRANSPARENT_RED_VALUE_ARB',
|
|
969
|
-
'WGL_TRANSPARENT_VALUE_EXT',
|
|
970
|
-
'WGL_TYPE_COLORINDEX_ARB',
|
|
971
|
-
'WGL_TYPE_COLORINDEX_EXT',
|
|
972
|
-
'WGL_TYPE_RGBA_ARB',
|
|
973
|
-
'WGL_TYPE_RGBA_EXT',
|
|
974
|
-
'WGL_TYPE_RGBA_FLOAT_ARB',
|
|
975
|
-
'WGL_TYPE_RGBA_FLOAT_ATI',
|
|
976
|
-
'WGL_WGLEXT_VERSION',
|
|
977
|
-
'WIN32_LEAN_AND_MEAN',
|
|
978
|
-
'WGL_3DFX_multisample',
|
|
979
|
-
'WGL_ARB_buffer_region',
|
|
980
|
-
'WGL_ARB_extensions_string',
|
|
981
|
-
'WGL_ARB_make_current_read',
|
|
982
|
-
'WGL_ARB_multisample',
|
|
983
|
-
'WGL_ARB_pbuffer',
|
|
984
|
-
'WGL_ARB_pixel_format',
|
|
985
|
-
'WGL_ARB_pixel_format_float',
|
|
986
|
-
'WGL_ARB_render_texture',
|
|
987
|
-
'WGL_ATI_pixel_format_float',
|
|
988
|
-
'WGL_EXT_depth_float',
|
|
989
|
-
'WGL_EXT_display_color_table',
|
|
990
|
-
'WGL_EXT_extensions_string',
|
|
991
|
-
'WGL_EXT_make_current_read',
|
|
992
|
-
'WGL_EXT_multisample',
|
|
993
|
-
'WGL_EXT_pbuffer',
|
|
994
|
-
'WGL_EXT_pixel_format',
|
|
995
|
-
'WGL_EXT_swap_control',
|
|
996
|
-
'WGL_I3D_digital_video_control',
|
|
997
|
-
'WGL_I3D_gamma',
|
|
998
|
-
'WGL_I3D_genlock',
|
|
999
|
-
'WGL_I3D_image_buffer',
|
|
1000
|
-
'WGL_I3D_swap_frame_lock',
|
|
1001
|
-
'WGL_I3D_swap_frame_usage',
|
|
1002
|
-
'WGL_NV_float_buffer',
|
|
1003
|
-
'WGL_NV_gpu_affinity',
|
|
1004
|
-
'WGL_NV_render_depth_texture',
|
|
1005
|
-
'WGL_NV_render_texture_rectangle',
|
|
1006
|
-
'WGL_NV_swap_group',
|
|
1007
|
-
'WGL_NV_vertex_array_range',
|
|
1008
|
-
'WGL_OML_sync_control',
|
|
1009
|
-
'wglAllocateMemoryNV',
|
|
1010
|
-
'wglAssociateImageBufferEventsI3D',
|
|
1011
|
-
'wglBeginFrameTrackingI3D',
|
|
1012
|
-
'wglBindDisplayColorTableEXT',
|
|
1013
|
-
'wglBindSwapBarrierNV',
|
|
1014
|
-
'wglBindTexImageARB',
|
|
1015
|
-
'wglChoosePixelFormatARB',
|
|
1016
|
-
'wglChoosePixelFormatEXT',
|
|
1017
|
-
'wglCreateAffinityDCNV',
|
|
1018
|
-
'wglCreateBufferRegionARB',
|
|
1019
|
-
'wglCreateDisplayColorTableEXT',
|
|
1020
|
-
'wglCreateImageBufferI3D',
|
|
1021
|
-
'wglCreatePbufferARB',
|
|
1022
|
-
'wglCreatePbufferEXT',
|
|
1023
|
-
'wglDeleteBufferRegionARB',
|
|
1024
|
-
'wglDeleteDCNV',
|
|
1025
|
-
'wglDestroyDisplayColorTableEXT',
|
|
1026
|
-
'wglDestroyImageBufferI3D',
|
|
1027
|
-
'wglDestroyPbufferARB',
|
|
1028
|
-
'wglDestroyPbufferEXT',
|
|
1029
|
-
'wglDisableFrameLockI3D',
|
|
1030
|
-
'wglDisableGenlockI3D',
|
|
1031
|
-
'wglEnableFrameLockI3D',
|
|
1032
|
-
'wglEnableGenlockI3D',
|
|
1033
|
-
'wglEndFrameTrackingI3D',
|
|
1034
|
-
'wglEnumGpuDevicesNV',
|
|
1035
|
-
'wglEnumGpusFromAffinityDCNV',
|
|
1036
|
-
'wglEnumGpusNV',
|
|
1037
|
-
'wglFreeMemoryNV',
|
|
1038
|
-
'wglGenlockSampleRateI3D',
|
|
1039
|
-
'wglGenlockSourceDelayI3D',
|
|
1040
|
-
'wglGenlockSourceEdgeI3D',
|
|
1041
|
-
'wglGenlockSourceI3D',
|
|
1042
|
-
'wglGetCurrentReadDCARB',
|
|
1043
|
-
'wglGetCurrentReadDCEXT',
|
|
1044
|
-
'wglGetDigitalVideoParametersI3D',
|
|
1045
|
-
'wglGetExtensionsStringARB',
|
|
1046
|
-
'wglGetExtensionsStringEXT',
|
|
1047
|
-
'wglGetFrameUsageI3D',
|
|
1048
|
-
'wglGetGammaTableI3D',
|
|
1049
|
-
'wglGetGammaTableParametersI3D',
|
|
1050
|
-
'wglGetGenlockSampleRateI3D',
|
|
1051
|
-
'wglGetGenlockSourceDelayI3D',
|
|
1052
|
-
'wglGetGenlockSourceEdgeI3D',
|
|
1053
|
-
'wglGetGenlockSourceI3D',
|
|
1054
|
-
'wglGetMscRateOML',
|
|
1055
|
-
'wglGetPbufferDCARB',
|
|
1056
|
-
'wglGetPbufferDCEXT',
|
|
1057
|
-
'wglGetPixelFormatAttribfvARB',
|
|
1058
|
-
'wglGetPixelFormatAttribfvEXT',
|
|
1059
|
-
'wglGetPixelFormatAttribivARB',
|
|
1060
|
-
'wglGetPixelFormatAttribivEXT',
|
|
1061
|
-
'wglGetSwapIntervalEXT',
|
|
1062
|
-
'wglGetSyncValuesOML',
|
|
1063
|
-
'wglIsEnabledFrameLockI3D',
|
|
1064
|
-
'wglIsEnabledGenlockI3D',
|
|
1065
|
-
'wglJoinSwapGroupNV',
|
|
1066
|
-
'wglLoadDisplayColorTableEXT',
|
|
1067
|
-
'wglMakeContextCurrentARB',
|
|
1068
|
-
'wglMakeContextCurrentEXT',
|
|
1069
|
-
'wglQueryFrameCountNV',
|
|
1070
|
-
'wglQueryFrameLockMasterI3D',
|
|
1071
|
-
'wglQueryFrameTrackingI3D',
|
|
1072
|
-
'wglQueryGenlockMaxSourceDelayI3D',
|
|
1073
|
-
'wglQueryMaxSwapGroupsNV',
|
|
1074
|
-
'wglQueryPbufferARB',
|
|
1075
|
-
'wglQueryPbufferEXT',
|
|
1076
|
-
'wglQuerySwapGroupNV',
|
|
1077
|
-
'wglReleaseImageBufferEventsI3D',
|
|
1078
|
-
'wglReleasePbufferDCARB',
|
|
1079
|
-
'wglReleasePbufferDCEXT',
|
|
1080
|
-
'wglReleaseTexImageARB',
|
|
1081
|
-
'wglResetFrameCountNV',
|
|
1082
|
-
'wglRestoreBufferRegionARB',
|
|
1083
|
-
'wglSaveBufferRegionARB',
|
|
1084
|
-
'wglSetDigitalVideoParametersI3D',
|
|
1085
|
-
'wglSetGammaTableI3D',
|
|
1086
|
-
'wglSetGammaTableParametersI3D',
|
|
1087
|
-
'wglSetPbufferAttribARB',
|
|
1088
|
-
'wglSwapBuffersMscOML',
|
|
1089
|
-
'wglSwapIntervalEXT',
|
|
1090
|
-
'wglSwapLayerBuffersMscOML',
|
|
1091
|
-
'wglWaitForMscOML',
|
|
1092
|
-
'wglWaitForSbcOML',
|
|
1093
|
-
]
|
|
1094
|
-
# END GENERATED CONTENT (do not edit above this line)
|
|
1095
|
-
|
|
1096
|
-
|