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
|
@@ -3,14 +3,15 @@
|
|
|
3
3
|
Generated by tools/gengl.py.
|
|
4
4
|
Do not modify this file.
|
|
5
5
|
"""
|
|
6
|
+
from __future__ import annotations
|
|
6
7
|
import ctypes
|
|
7
8
|
|
|
8
9
|
from ctypes import (
|
|
9
10
|
CFUNCTYPE, POINTER, Structure, c_char, c_long, c_float, c_int,
|
|
10
11
|
c_int64, c_ulong, c_ubyte, c_uint, c_int32,
|
|
11
12
|
)
|
|
12
|
-
from pyglet.gl.lib import link_GLX as _link_function
|
|
13
|
-
|
|
13
|
+
from pyglet.graphics.api.gl.lib import link_GLX as _link_function
|
|
14
|
+
from pyglet.libs.linux.glx import glx
|
|
14
15
|
|
|
15
16
|
if not hasattr(ctypes, 'c_int64'):
|
|
16
17
|
# XXX TODO completely wrong, but at least can import.
|
|
@@ -23,8 +24,7 @@ if not hasattr(ctypes, 'c_int64'):
|
|
|
23
24
|
# This content is generated by tools/gengl.py.
|
|
24
25
|
# Wrapper for http://www.opengl.org/registry/api/glxext.h
|
|
25
26
|
|
|
26
|
-
import pyglet.libs.x11.xlib
|
|
27
|
-
import pyglet.gl.glx
|
|
27
|
+
import pyglet.libs.linux.x11.xlib
|
|
28
28
|
|
|
29
29
|
# H (/usr/include/GL/glx.h:26)
|
|
30
30
|
# ARB_get_proc_address (/usr/include/GL/glx.h:317)
|
|
@@ -256,7 +256,7 @@ GLX_GPU_NUM_SPI_AMD = 8616 # GL/glxext.h:436
|
|
|
256
256
|
GLX_CONTEXT_ES2_PROFILE_BIT_EXT = 4 # GL/glxext.h:440
|
|
257
257
|
# ARB_get_proc_address (GL/glxext.h:446)
|
|
258
258
|
# SGIX_video_source (GL/glxext.h:450)
|
|
259
|
-
XID = pyglet.libs.x11.xlib.XID
|
|
259
|
+
XID = pyglet.libs.linux.x11.xlib.XID
|
|
260
260
|
GLXVideoSourceSGIX = XID # GL/glxext.h:451
|
|
261
261
|
# SGIX_fbconfig (GL/glxext.h:454)
|
|
262
262
|
GLXFBConfigIDSGIX = XID # GL/glxext.h:455
|
|
@@ -264,7 +264,7 @@ class struct___GLXFBConfigRec(Structure):
|
|
|
264
264
|
__slots__ = [
|
|
265
265
|
]
|
|
266
266
|
struct___GLXFBConfigRec._fields_ = [
|
|
267
|
-
('_opaque_struct', c_int)
|
|
267
|
+
('_opaque_struct', c_int),
|
|
268
268
|
]
|
|
269
269
|
|
|
270
270
|
GLXFBConfigSGIX = POINTER(struct___GLXFBConfigRec) # GL/glxext.h:456
|
|
@@ -272,22 +272,22 @@ GLXFBConfigSGIX = POINTER(struct___GLXFBConfigRec) # GL/glxext.h:456
|
|
|
272
272
|
GLXPbufferSGIX = XID # GL/glxext.h:460
|
|
273
273
|
class struct_anon_106(Structure):
|
|
274
274
|
__slots__ = [
|
|
275
|
-
'
|
|
276
|
-
'serial',
|
|
277
|
-
'send_event',
|
|
275
|
+
'count',
|
|
278
276
|
'display',
|
|
277
|
+
'draw_type',
|
|
279
278
|
'drawable',
|
|
280
279
|
'event_type',
|
|
281
|
-
'
|
|
280
|
+
'height',
|
|
282
281
|
'mask',
|
|
282
|
+
'send_event',
|
|
283
|
+
'serial',
|
|
284
|
+
'type',
|
|
285
|
+
'width',
|
|
283
286
|
'x',
|
|
284
287
|
'y',
|
|
285
|
-
'width',
|
|
286
|
-
'height',
|
|
287
|
-
'count',
|
|
288
288
|
]
|
|
289
|
-
Display = pyglet.libs.x11.xlib.Display
|
|
290
|
-
GLXDrawable =
|
|
289
|
+
Display = pyglet.libs.linux.x11.xlib.Display
|
|
290
|
+
GLXDrawable = glx.GLXDrawable
|
|
291
291
|
struct_anon_106._fields_ = [
|
|
292
292
|
('type', c_int),
|
|
293
293
|
('serial', c_ulong),
|
|
@@ -320,8 +320,8 @@ GLX_ARB_fbconfig_float = 1 # GL/glxext.h:584
|
|
|
320
320
|
GLX_ARB_framebuffer_sRGB = 1 # GL/glxext.h:588
|
|
321
321
|
# ARB_create_context (GL/glxext.h:591)
|
|
322
322
|
GLX_ARB_create_context = 1 # GL/glxext.h:592
|
|
323
|
-
GLXContext =
|
|
324
|
-
GLXFBConfig =
|
|
323
|
+
GLXContext = glx.GLXContext
|
|
324
|
+
GLXFBConfig = glx.GLXFBConfig
|
|
325
325
|
# GL/glxext.h:594
|
|
326
326
|
glXCreateContextAttribsARB = _link_function('glXCreateContextAttribsARB', GLXContext, [POINTER(Display), GLXFBConfig, GLXContext, c_int, POINTER(c_int)], 'ARB_create_context')
|
|
327
327
|
|
|
@@ -372,7 +372,7 @@ glXGetCurrentDisplayEXT = _link_function('glXGetCurrentDisplayEXT', POINTER(Disp
|
|
|
372
372
|
# GL/glxext.h:663
|
|
373
373
|
glXQueryContextInfoEXT = _link_function('glXQueryContextInfoEXT', c_int, [POINTER(Display), GLXContext, c_int, POINTER(c_int)], 'EXT_import_context')
|
|
374
374
|
|
|
375
|
-
GLXContextID =
|
|
375
|
+
GLXContextID = glx.GLXContextID
|
|
376
376
|
# GL/glxext.h:664
|
|
377
377
|
glXGetContextIDEXT = _link_function('glXGetContextIDEXT', GLXContextID, [GLXContext], 'EXT_import_context')
|
|
378
378
|
|
|
@@ -395,15 +395,15 @@ glXGetFBConfigAttribSGIX = _link_function('glXGetFBConfigAttribSGIX', c_int, [PO
|
|
|
395
395
|
# GL/glxext.h:679
|
|
396
396
|
glXChooseFBConfigSGIX = _link_function('glXChooseFBConfigSGIX', POINTER(GLXFBConfigSGIX), [POINTER(Display), c_int, POINTER(c_int), POINTER(c_int)], 'SGIX_fbconfig')
|
|
397
397
|
|
|
398
|
-
GLXPixmap =
|
|
399
|
-
Pixmap = pyglet.libs.x11.xlib.Pixmap
|
|
398
|
+
GLXPixmap = glx.GLXPixmap
|
|
399
|
+
Pixmap = pyglet.libs.linux.x11.xlib.Pixmap
|
|
400
400
|
# GL/glxext.h:680
|
|
401
401
|
glXCreateGLXPixmapWithConfigSGIX = _link_function('glXCreateGLXPixmapWithConfigSGIX', GLXPixmap, [POINTER(Display), GLXFBConfigSGIX, Pixmap], 'SGIX_fbconfig')
|
|
402
402
|
|
|
403
403
|
# GL/glxext.h:681
|
|
404
404
|
glXCreateContextWithConfigSGIX = _link_function('glXCreateContextWithConfigSGIX', GLXContext, [POINTER(Display), GLXFBConfigSGIX, c_int, GLXContext, c_int], 'SGIX_fbconfig')
|
|
405
405
|
|
|
406
|
-
XVisualInfo = pyglet.libs.x11.xlib.XVisualInfo
|
|
406
|
+
XVisualInfo = pyglet.libs.linux.x11.xlib.XVisualInfo
|
|
407
407
|
# GL/glxext.h:682
|
|
408
408
|
glXGetVisualFromFBConfigSGIX = _link_function('glXGetVisualFromFBConfigSGIX', POINTER(XVisualInfo), [POINTER(Display), GLXFBConfigSGIX], 'SGIX_fbconfig')
|
|
409
409
|
|
|
@@ -440,7 +440,7 @@ PFNGLXSELECTEVENTSGIXPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, c_ulo
|
|
|
440
440
|
PFNGLXGETSELECTEDEVENTSGIXPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, POINTER(c_ulong)) # GL/glxext.h:706
|
|
441
441
|
# SGI_cushion (GL/glxext.h:709)
|
|
442
442
|
GLX_SGI_cushion = 1 # GL/glxext.h:710
|
|
443
|
-
Window = pyglet.libs.x11.xlib.Window
|
|
443
|
+
Window = pyglet.libs.linux.x11.xlib.Window
|
|
444
444
|
# GL/glxext.h:712
|
|
445
445
|
glXCushionSGI = _link_function('glXCushionSGI', None, [POINTER(Display), Window, c_float], 'SGI_cushion')
|
|
446
446
|
|
|
@@ -500,7 +500,7 @@ glXCopySubBufferMESA = _link_function('glXCopySubBufferMESA', None, [POINTER(Dis
|
|
|
500
500
|
PFNGLXCOPYSUBBUFFERMESAPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, c_int, c_int, c_int, c_int) # GL/glxext.h:774
|
|
501
501
|
# MESA_pixmap_colormap (GL/glxext.h:777)
|
|
502
502
|
GLX_MESA_pixmap_colormap = 1 # GL/glxext.h:778
|
|
503
|
-
Colormap = pyglet.libs.x11.xlib.Colormap
|
|
503
|
+
Colormap = pyglet.libs.linux.x11.xlib.Colormap
|
|
504
504
|
# GL/glxext.h:780
|
|
505
505
|
glXCreateGLXPixmapMESA = _link_function('glXCreateGLXPixmapMESA', GLXPixmap, [POINTER(Display), POINTER(XVisualInfo), Pixmap, Colormap], 'MESA_pixmap_colormap')
|
|
506
506
|
|
|
@@ -549,8 +549,8 @@ GLX_NV_float_buffer = 1 # GL/glxext.h:826
|
|
|
549
549
|
GLX_SGIX_hyperpipe = 1 # GL/glxext.h:830
|
|
550
550
|
class struct_anon_107(Structure):
|
|
551
551
|
__slots__ = [
|
|
552
|
-
'pipeName',
|
|
553
552
|
'networkId',
|
|
553
|
+
'pipeName',
|
|
554
554
|
]
|
|
555
555
|
struct_anon_107._fields_ = [
|
|
556
556
|
('pipeName', c_char * 80),
|
|
@@ -560,9 +560,9 @@ struct_anon_107._fields_ = [
|
|
|
560
560
|
GLXHyperpipeNetworkSGIX = struct_anon_107 # GL/glxext.h:835
|
|
561
561
|
class struct_anon_108(Structure):
|
|
562
562
|
__slots__ = [
|
|
563
|
-
'pipeName',
|
|
564
563
|
'channel',
|
|
565
564
|
'participationType',
|
|
565
|
+
'pipeName',
|
|
566
566
|
'timeSlice',
|
|
567
567
|
]
|
|
568
568
|
struct_anon_108._fields_ = [
|
|
@@ -575,15 +575,15 @@ struct_anon_108._fields_ = [
|
|
|
575
575
|
GLXHyperpipeConfigSGIX = struct_anon_108 # GL/glxext.h:843
|
|
576
576
|
class struct_anon_109(Structure):
|
|
577
577
|
__slots__ = [
|
|
578
|
+
'destHeight',
|
|
579
|
+
'destWidth',
|
|
580
|
+
'destXOrigin',
|
|
581
|
+
'destYOrigin',
|
|
578
582
|
'pipeName',
|
|
583
|
+
'srcHeight',
|
|
584
|
+
'srcWidth',
|
|
579
585
|
'srcXOrigin',
|
|
580
586
|
'srcYOrigin',
|
|
581
|
-
'srcWidth',
|
|
582
|
-
'srcHeight',
|
|
583
|
-
'destXOrigin',
|
|
584
|
-
'destYOrigin',
|
|
585
|
-
'destWidth',
|
|
586
|
-
'destHeight',
|
|
587
587
|
]
|
|
588
588
|
struct_anon_109._fields_ = [
|
|
589
589
|
('pipeName', c_char * 80),
|
|
@@ -600,11 +600,11 @@ struct_anon_109._fields_ = [
|
|
|
600
600
|
GLXPipeRect = struct_anon_109 # GL/glxext.h:849
|
|
601
601
|
class struct_anon_110(Structure):
|
|
602
602
|
__slots__ = [
|
|
603
|
-
'pipeName',
|
|
604
603
|
'XOrigin',
|
|
605
604
|
'YOrigin',
|
|
606
605
|
'maxHeight',
|
|
607
606
|
'maxWidth',
|
|
607
|
+
'pipeName',
|
|
608
608
|
]
|
|
609
609
|
struct_anon_110._fields_ = [
|
|
610
610
|
('pipeName', c_char * 80),
|
|
@@ -685,7 +685,7 @@ glXGetVideoDeviceNV = _link_function('glXGetVideoDeviceNV', c_int, [POINTER(Disp
|
|
|
685
685
|
# GL/glxext.h:916
|
|
686
686
|
glXReleaseVideoDeviceNV = _link_function('glXReleaseVideoDeviceNV', c_int, [POINTER(Display), c_int, GLXVideoDeviceNV], 'NV_video_output')
|
|
687
687
|
|
|
688
|
-
GLXPbuffer =
|
|
688
|
+
GLXPbuffer = glx.GLXPbuffer
|
|
689
689
|
# GL/glxext.h:917
|
|
690
690
|
glXBindVideoImageNV = _link_function('glXBindVideoImageNV', c_int, [POINTER(Display), GLXVideoDeviceNV, GLXPbuffer, c_int], 'NV_video_output')
|
|
691
691
|
|
|
@@ -780,165 +780,381 @@ GLX_NV_multisample_coverage = 1 # GL/glxext.h:985
|
|
|
780
780
|
# MESA_swap_control (/usr/include/GL/glx.h:425)
|
|
781
781
|
# EXT_texture_from_pixmap (/usr/include/GL/glx.h:442)
|
|
782
782
|
|
|
783
|
-
__all__ = [
|
|
784
|
-
'
|
|
785
|
-
'
|
|
786
|
-
'
|
|
787
|
-
'
|
|
788
|
-
'
|
|
789
|
-
'
|
|
790
|
-
'
|
|
791
|
-
'
|
|
792
|
-
'
|
|
793
|
-
'
|
|
794
|
-
'
|
|
795
|
-
'
|
|
796
|
-
'
|
|
797
|
-
'
|
|
798
|
-
'
|
|
799
|
-
'
|
|
800
|
-
'
|
|
801
|
-
'
|
|
802
|
-
'
|
|
803
|
-
'
|
|
804
|
-
'
|
|
805
|
-
'
|
|
806
|
-
'
|
|
807
|
-
'
|
|
808
|
-
'
|
|
809
|
-
'
|
|
810
|
-
'
|
|
811
|
-
'
|
|
812
|
-
'
|
|
813
|
-
'
|
|
814
|
-
'
|
|
815
|
-
'
|
|
816
|
-
'
|
|
817
|
-
'
|
|
818
|
-
'
|
|
819
|
-
'
|
|
820
|
-
'
|
|
821
|
-
'
|
|
822
|
-
'
|
|
823
|
-
'
|
|
824
|
-
'
|
|
825
|
-
'
|
|
826
|
-
'
|
|
827
|
-
'
|
|
828
|
-
'
|
|
829
|
-
'
|
|
830
|
-
'
|
|
831
|
-
'
|
|
832
|
-
'
|
|
833
|
-
'
|
|
834
|
-
'
|
|
835
|
-
'
|
|
836
|
-
'
|
|
837
|
-
'
|
|
838
|
-
'
|
|
839
|
-
'
|
|
840
|
-
'
|
|
841
|
-
'
|
|
842
|
-
'
|
|
843
|
-
'
|
|
844
|
-
'
|
|
845
|
-
'
|
|
846
|
-
'
|
|
847
|
-
'
|
|
848
|
-
'
|
|
849
|
-
'
|
|
850
|
-
'
|
|
851
|
-
'
|
|
852
|
-
'
|
|
853
|
-
'
|
|
854
|
-
'
|
|
855
|
-
'
|
|
856
|
-
'
|
|
857
|
-
'
|
|
858
|
-
'
|
|
859
|
-
'
|
|
860
|
-
'
|
|
861
|
-
'
|
|
862
|
-
'
|
|
863
|
-
'
|
|
864
|
-
'
|
|
865
|
-
'
|
|
866
|
-
'
|
|
867
|
-
'
|
|
868
|
-
'
|
|
869
|
-
'
|
|
870
|
-
'
|
|
871
|
-
'
|
|
872
|
-
'
|
|
873
|
-
'
|
|
874
|
-
'
|
|
875
|
-
'
|
|
876
|
-
'
|
|
877
|
-
'
|
|
878
|
-
'
|
|
879
|
-
'
|
|
880
|
-
'
|
|
881
|
-
'
|
|
882
|
-
'
|
|
883
|
-
'
|
|
884
|
-
'
|
|
885
|
-
'
|
|
886
|
-
'
|
|
887
|
-
'
|
|
888
|
-
'
|
|
889
|
-
'
|
|
890
|
-
'
|
|
891
|
-
'
|
|
892
|
-
'
|
|
893
|
-
'
|
|
894
|
-
'
|
|
895
|
-
'
|
|
896
|
-
'
|
|
897
|
-
'
|
|
898
|
-
'
|
|
899
|
-
'
|
|
900
|
-
'
|
|
901
|
-
'
|
|
902
|
-
'
|
|
903
|
-
'
|
|
904
|
-
'
|
|
905
|
-
'
|
|
906
|
-
'
|
|
907
|
-
'
|
|
908
|
-
'
|
|
909
|
-
'
|
|
910
|
-
'
|
|
911
|
-
'
|
|
912
|
-
'
|
|
913
|
-
'
|
|
914
|
-
'
|
|
915
|
-
'
|
|
916
|
-
'
|
|
917
|
-
'
|
|
918
|
-
'
|
|
919
|
-
'
|
|
920
|
-
'
|
|
921
|
-
'
|
|
922
|
-
'
|
|
923
|
-
'
|
|
924
|
-
'
|
|
925
|
-
'
|
|
926
|
-
'
|
|
927
|
-
'
|
|
928
|
-
'
|
|
929
|
-
'
|
|
930
|
-
'
|
|
931
|
-
'
|
|
932
|
-
'
|
|
933
|
-
'
|
|
934
|
-
'
|
|
935
|
-
'
|
|
936
|
-
'
|
|
937
|
-
'
|
|
938
|
-
'
|
|
939
|
-
'
|
|
940
|
-
'
|
|
941
|
-
'
|
|
783
|
+
__all__ = [
|
|
784
|
+
'GLX_3DFX_FULLSCREEN_MODE_MESA',
|
|
785
|
+
'GLX_3DFX_WINDOW_MODE_MESA',
|
|
786
|
+
'GLX_ACCUM_BUFFER_BIT_SGIX',
|
|
787
|
+
'GLX_AUX0_EXT',
|
|
788
|
+
'GLX_AUX1_EXT',
|
|
789
|
+
'GLX_AUX2_EXT',
|
|
790
|
+
'GLX_AUX3_EXT',
|
|
791
|
+
'GLX_AUX4_EXT',
|
|
792
|
+
'GLX_AUX5_EXT',
|
|
793
|
+
'GLX_AUX6_EXT',
|
|
794
|
+
'GLX_AUX7_EXT',
|
|
795
|
+
'GLX_AUX8_EXT',
|
|
796
|
+
'GLX_AUX9_EXT',
|
|
797
|
+
'GLX_AUX_BUFFERS_BIT_SGIX',
|
|
798
|
+
'GLX_BACK_EXT',
|
|
799
|
+
'GLX_BACK_LEFT_BUFFER_BIT_SGIX',
|
|
800
|
+
'GLX_BACK_LEFT_EXT',
|
|
801
|
+
'GLX_BACK_RIGHT_BUFFER_BIT_SGIX',
|
|
802
|
+
'GLX_BACK_RIGHT_EXT',
|
|
803
|
+
'GLX_BAD_HYPERPIPE_CONFIG_SGIX',
|
|
804
|
+
'GLX_BAD_HYPERPIPE_SGIX',
|
|
805
|
+
'GLX_BIND_TO_MIPMAP_TEXTURE_EXT',
|
|
806
|
+
'GLX_BIND_TO_TEXTURE_RGBA_EXT',
|
|
807
|
+
'GLX_BIND_TO_TEXTURE_RGB_EXT',
|
|
808
|
+
'GLX_BIND_TO_TEXTURE_TARGETS_EXT',
|
|
809
|
+
'GLX_BLENDED_RGBA_SGIS',
|
|
810
|
+
'GLX_BUFFER_CLOBBER_MASK_SGIX',
|
|
811
|
+
'GLX_BUFFER_SWAP_COMPLETE_INTEL_MASK',
|
|
812
|
+
'GLX_COLOR_INDEX_BIT_SGIX',
|
|
813
|
+
'GLX_COLOR_INDEX_TYPE_SGIX',
|
|
814
|
+
'GLX_COLOR_SAMPLES_NV',
|
|
815
|
+
'GLX_CONTEXT_ALLOW_BUFFER_BYTE_ORDER_MISMATCH_ARB',
|
|
816
|
+
'GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB',
|
|
817
|
+
'GLX_CONTEXT_CORE_PROFILE_BIT_ARB',
|
|
818
|
+
'GLX_CONTEXT_DEBUG_BIT_ARB',
|
|
819
|
+
'GLX_CONTEXT_ES2_PROFILE_BIT_EXT',
|
|
820
|
+
'GLX_CONTEXT_FLAGS_ARB',
|
|
821
|
+
'GLX_CONTEXT_FORWARD_COMPATIBLE_BIT_ARB',
|
|
822
|
+
'GLX_CONTEXT_MAJOR_VERSION_ARB',
|
|
823
|
+
'GLX_CONTEXT_MINOR_VERSION_ARB',
|
|
824
|
+
'GLX_CONTEXT_PROFILE_MASK_ARB',
|
|
825
|
+
'GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB',
|
|
826
|
+
'GLX_CONTEXT_ROBUST_ACCESS_BIT_ARB',
|
|
827
|
+
'GLX_COPY_COMPLETE_INTEL',
|
|
828
|
+
'GLX_COVERAGE_SAMPLES_NV',
|
|
829
|
+
'GLX_DAMAGED_SGIX',
|
|
830
|
+
'GLX_DEPTH_BUFFER_BIT_SGIX',
|
|
831
|
+
'GLX_DEVICE_ID_NV',
|
|
832
|
+
'GLX_DIGITAL_MEDIA_PBUFFER_SGIX',
|
|
833
|
+
'GLX_DIRECT_COLOR_EXT',
|
|
834
|
+
'GLX_DRAWABLE_TYPE_SGIX',
|
|
835
|
+
'GLX_EVENT_MASK_SGIX',
|
|
836
|
+
'GLX_EXCHANGE_COMPLETE_INTEL',
|
|
837
|
+
'GLX_FBCONFIG_ID_SGIX',
|
|
838
|
+
'GLX_FLIP_COMPLETE_INTEL',
|
|
839
|
+
'GLX_FLOAT_COMPONENTS_NV',
|
|
840
|
+
'GLX_FRAMEBUFFER_SRGB_CAPABLE_ARB',
|
|
841
|
+
'GLX_FRAMEBUFFER_SRGB_CAPABLE_EXT',
|
|
842
|
+
'GLX_FRONT_EXT',
|
|
843
|
+
'GLX_FRONT_LEFT_BUFFER_BIT_SGIX',
|
|
844
|
+
'GLX_FRONT_LEFT_EXT',
|
|
845
|
+
'GLX_FRONT_RIGHT_BUFFER_BIT_SGIX',
|
|
846
|
+
'GLX_FRONT_RIGHT_EXT',
|
|
847
|
+
'GLX_GLXEXT_VERSION',
|
|
848
|
+
'GLX_GPU_CLOCK_AMD',
|
|
849
|
+
'GLX_GPU_FASTEST_TARGET_GPUS_AMD',
|
|
850
|
+
'GLX_GPU_NUM_PIPES_AMD',
|
|
851
|
+
'GLX_GPU_NUM_RB_AMD',
|
|
852
|
+
'GLX_GPU_NUM_SIMD_AMD',
|
|
853
|
+
'GLX_GPU_NUM_SPI_AMD',
|
|
854
|
+
'GLX_GPU_OPENGL_VERSION_STRING_AMD',
|
|
855
|
+
'GLX_GPU_RAM_AMD',
|
|
856
|
+
'GLX_GPU_RENDERER_STRING_AMD',
|
|
857
|
+
'GLX_GPU_VENDOR_AMD',
|
|
858
|
+
'GLX_GRAY_SCALE_EXT',
|
|
859
|
+
'GLX_HEIGHT_SGIX',
|
|
860
|
+
'GLX_HYPERPIPE_DISPLAY_PIPE_SGIX',
|
|
861
|
+
'GLX_HYPERPIPE_ID_SGIX',
|
|
862
|
+
'GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX',
|
|
863
|
+
'GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX',
|
|
864
|
+
'GLX_HYPERPIPE_RENDER_PIPE_SGIX',
|
|
865
|
+
'GLX_HYPERPIPE_STEREO_SGIX',
|
|
866
|
+
'GLX_LARGEST_PBUFFER_SGIX',
|
|
867
|
+
'GLX_LOSE_CONTEXT_ON_RESET_ARB',
|
|
868
|
+
'GLX_MAX_PBUFFER_HEIGHT_SGIX',
|
|
869
|
+
'GLX_MAX_PBUFFER_PIXELS_SGIX',
|
|
870
|
+
'GLX_MAX_PBUFFER_WIDTH_SGIX',
|
|
871
|
+
'GLX_MAX_SWAP_INTERVAL_EXT',
|
|
872
|
+
'GLX_MIPMAP_TEXTURE_EXT',
|
|
873
|
+
'GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS',
|
|
874
|
+
'GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS',
|
|
875
|
+
'GLX_NONE_EXT',
|
|
876
|
+
'GLX_NON_CONFORMANT_VISUAL_EXT',
|
|
877
|
+
'GLX_NO_RESET_NOTIFICATION_ARB',
|
|
878
|
+
'GLX_NUM_VIDEO_CAPTURE_SLOTS_NV',
|
|
879
|
+
'GLX_NUM_VIDEO_SLOTS_NV',
|
|
880
|
+
'GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX',
|
|
881
|
+
'GLX_OPTIMAL_PBUFFER_WIDTH_SGIX',
|
|
882
|
+
'GLX_PBUFFER_BIT_SGIX',
|
|
883
|
+
'GLX_PBUFFER_SGIX',
|
|
884
|
+
'GLX_PIPE_RECT_LIMITS_SGIX',
|
|
885
|
+
'GLX_PIPE_RECT_SGIX',
|
|
886
|
+
'GLX_PIXMAP_BIT_SGIX',
|
|
887
|
+
'GLX_PRESERVED_CONTENTS_SGIX',
|
|
888
|
+
'GLX_PSEUDO_COLOR_EXT',
|
|
889
|
+
'GLX_RENDER_TYPE_SGIX',
|
|
890
|
+
'GLX_RGBA_BIT_SGIX',
|
|
891
|
+
'GLX_RGBA_FLOAT_BIT_ARB',
|
|
892
|
+
'GLX_RGBA_FLOAT_TYPE_ARB',
|
|
893
|
+
'GLX_RGBA_TYPE_SGIX',
|
|
894
|
+
'GLX_RGBA_UNSIGNED_FLOAT_BIT_EXT',
|
|
895
|
+
'GLX_RGBA_UNSIGNED_FLOAT_TYPE_EXT',
|
|
896
|
+
'GLX_SAMPLES_3DFX',
|
|
897
|
+
'GLX_SAMPLES_ARB',
|
|
898
|
+
'GLX_SAMPLES_SGIS',
|
|
899
|
+
'GLX_SAMPLE_BUFFERS_3DFX',
|
|
900
|
+
'GLX_SAMPLE_BUFFERS_ARB',
|
|
901
|
+
'GLX_SAMPLE_BUFFERS_BIT_SGIX',
|
|
902
|
+
'GLX_SAMPLE_BUFFERS_SGIS',
|
|
903
|
+
'GLX_SAVED_SGIX',
|
|
904
|
+
'GLX_SCREEN_EXT',
|
|
905
|
+
'GLX_SHARE_CONTEXT_EXT',
|
|
906
|
+
'GLX_SLOW_VISUAL_EXT',
|
|
907
|
+
'GLX_STATIC_COLOR_EXT',
|
|
908
|
+
'GLX_STATIC_GRAY_EXT',
|
|
909
|
+
'GLX_STENCIL_BUFFER_BIT_SGIX',
|
|
910
|
+
'GLX_SWAP_COPY_OML',
|
|
911
|
+
'GLX_SWAP_EXCHANGE_OML',
|
|
912
|
+
'GLX_SWAP_INTERVAL_EXT',
|
|
913
|
+
'GLX_SWAP_METHOD_OML',
|
|
914
|
+
'GLX_SWAP_UNDEFINED_OML',
|
|
915
|
+
'GLX_SYNC_FRAME_SGIX',
|
|
916
|
+
'GLX_SYNC_SWAP_SGIX',
|
|
917
|
+
'GLX_TEXTURE_1D_BIT_EXT',
|
|
918
|
+
'GLX_TEXTURE_1D_EXT',
|
|
919
|
+
'GLX_TEXTURE_2D_BIT_EXT',
|
|
920
|
+
'GLX_TEXTURE_2D_EXT',
|
|
921
|
+
'GLX_TEXTURE_FORMAT_EXT',
|
|
922
|
+
'GLX_TEXTURE_FORMAT_NONE_EXT',
|
|
923
|
+
'GLX_TEXTURE_FORMAT_RGBA_EXT',
|
|
924
|
+
'GLX_TEXTURE_FORMAT_RGB_EXT',
|
|
925
|
+
'GLX_TEXTURE_RECTANGLE_BIT_EXT',
|
|
926
|
+
'GLX_TEXTURE_RECTANGLE_EXT',
|
|
927
|
+
'GLX_TEXTURE_TARGET_EXT',
|
|
928
|
+
'GLX_TRANSPARENT_ALPHA_VALUE_EXT',
|
|
929
|
+
'GLX_TRANSPARENT_BLUE_VALUE_EXT',
|
|
930
|
+
'GLX_TRANSPARENT_GREEN_VALUE_EXT',
|
|
931
|
+
'GLX_TRANSPARENT_INDEX_EXT',
|
|
932
|
+
'GLX_TRANSPARENT_INDEX_VALUE_EXT',
|
|
933
|
+
'GLX_TRANSPARENT_RED_VALUE_EXT',
|
|
934
|
+
'GLX_TRANSPARENT_RGB_EXT',
|
|
935
|
+
'GLX_TRANSPARENT_TYPE_EXT',
|
|
936
|
+
'GLX_TRUE_COLOR_EXT',
|
|
937
|
+
'GLX_UNIQUE_ID_NV',
|
|
938
|
+
'GLX_VIDEO_OUT_ALPHA_NV',
|
|
939
|
+
'GLX_VIDEO_OUT_COLOR_AND_ALPHA_NV',
|
|
940
|
+
'GLX_VIDEO_OUT_COLOR_AND_DEPTH_NV',
|
|
941
|
+
'GLX_VIDEO_OUT_COLOR_NV',
|
|
942
|
+
'GLX_VIDEO_OUT_DEPTH_NV',
|
|
943
|
+
'GLX_VIDEO_OUT_FIELD_1_NV',
|
|
944
|
+
'GLX_VIDEO_OUT_FIELD_2_NV',
|
|
945
|
+
'GLX_VIDEO_OUT_FRAME_NV',
|
|
946
|
+
'GLX_VIDEO_OUT_STACKED_FIELDS_1_2_NV',
|
|
947
|
+
'GLX_VIDEO_OUT_STACKED_FIELDS_2_1_NV',
|
|
948
|
+
'GLX_VISUAL_CAVEAT_EXT',
|
|
949
|
+
'GLX_VISUAL_ID_EXT',
|
|
950
|
+
'GLX_VISUAL_SELECT_GROUP_SGIX',
|
|
951
|
+
'GLX_WIDTH_SGIX',
|
|
952
|
+
'GLX_WINDOW_BIT_SGIX',
|
|
953
|
+
'GLX_WINDOW_SGIX',
|
|
954
|
+
'GLX_X_RENDERABLE_SGIX',
|
|
955
|
+
'GLX_X_VISUAL_TYPE_EXT',
|
|
956
|
+
'GLX_Y_INVERTED_EXT',
|
|
957
|
+
'PFNGLXBINDCHANNELTOWINDOWSGIXPROC',
|
|
958
|
+
'PFNGLXBINDHYPERPIPESGIXPROC',
|
|
959
|
+
'PFNGLXBINDSWAPBARRIERNVPROC',
|
|
960
|
+
'PFNGLXBINDSWAPBARRIERSGIXPROC',
|
|
961
|
+
'PFNGLXBINDTEXIMAGEEXTPROC',
|
|
962
|
+
'PFNGLXBINDVIDEOCAPTUREDEVICENVPROC',
|
|
963
|
+
'PFNGLXBINDVIDEODEVICENVPROC',
|
|
964
|
+
'PFNGLXBINDVIDEOIMAGENVPROC',
|
|
965
|
+
'PFNGLXCHANNELRECTSGIXPROC',
|
|
966
|
+
'PFNGLXCHANNELRECTSYNCSGIXPROC',
|
|
967
|
+
'PFNGLXCHOOSEFBCONFIGSGIXPROC',
|
|
968
|
+
'PFNGLXCOPYIMAGESUBDATANVPROC',
|
|
969
|
+
'PFNGLXCOPYSUBBUFFERMESAPROC',
|
|
970
|
+
'PFNGLXCREATECONTEXTATTRIBSARBPROC',
|
|
971
|
+
'PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC',
|
|
972
|
+
'PFNGLXCREATEGLXPBUFFERSGIXPROC',
|
|
973
|
+
'PFNGLXCREATEGLXPIXMAPMESAPROC',
|
|
974
|
+
'PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC',
|
|
975
|
+
'PFNGLXCUSHIONSGIPROC',
|
|
976
|
+
'PFNGLXDESTROYGLXPBUFFERSGIXPROC',
|
|
977
|
+
'PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC',
|
|
978
|
+
'PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC',
|
|
979
|
+
'PFNGLXENUMERATEVIDEODEVICESNVPROC',
|
|
980
|
+
'PFNGLXFREECONTEXTEXTPROC',
|
|
981
|
+
'PFNGLXGETAGPOFFSETMESAPROC',
|
|
982
|
+
'PFNGLXGETCONTEXTIDEXTPROC',
|
|
983
|
+
'PFNGLXGETCURRENTDISPLAYEXTPROC',
|
|
984
|
+
'PFNGLXGETCURRENTREADDRAWABLESGIPROC',
|
|
985
|
+
'PFNGLXGETFBCONFIGATTRIBSGIXPROC',
|
|
986
|
+
'PFNGLXGETFBCONFIGFROMVISUALSGIXPROC',
|
|
987
|
+
'PFNGLXGETMSCRATEOMLPROC',
|
|
988
|
+
'PFNGLXGETSELECTEDEVENTSGIXPROC',
|
|
989
|
+
'PFNGLXGETSYNCVALUESOMLPROC',
|
|
990
|
+
'PFNGLXGETTRANSPARENTINDEXSUNPROC',
|
|
991
|
+
'PFNGLXGETVIDEODEVICENVPROC',
|
|
992
|
+
'PFNGLXGETVIDEOINFONVPROC',
|
|
993
|
+
'PFNGLXGETVIDEOSYNCSGIPROC',
|
|
994
|
+
'PFNGLXGETVISUALFROMFBCONFIGSGIXPROC',
|
|
995
|
+
'PFNGLXHYPERPIPEATTRIBSGIXPROC',
|
|
996
|
+
'PFNGLXHYPERPIPECONFIGSGIXPROC',
|
|
997
|
+
'PFNGLXIMPORTCONTEXTEXTPROC',
|
|
998
|
+
'PFNGLXJOINSWAPGROUPNVPROC',
|
|
999
|
+
'PFNGLXJOINSWAPGROUPSGIXPROC',
|
|
1000
|
+
'PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC',
|
|
1001
|
+
'PFNGLXMAKECURRENTREADSGIPROC',
|
|
1002
|
+
'PFNGLXQUERYCHANNELDELTASSGIXPROC',
|
|
1003
|
+
'PFNGLXQUERYCHANNELRECTSGIXPROC',
|
|
1004
|
+
'PFNGLXQUERYCONTEXTINFOEXTPROC',
|
|
1005
|
+
'PFNGLXQUERYFRAMECOUNTNVPROC',
|
|
1006
|
+
'PFNGLXQUERYGLXPBUFFERSGIXPROC',
|
|
1007
|
+
'PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC',
|
|
1008
|
+
'PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC',
|
|
1009
|
+
'PFNGLXQUERYHYPERPIPECONFIGSGIXPROC',
|
|
1010
|
+
'PFNGLXQUERYHYPERPIPENETWORKSGIXPROC',
|
|
1011
|
+
'PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC',
|
|
1012
|
+
'PFNGLXQUERYMAXSWAPGROUPSNVPROC',
|
|
1013
|
+
'PFNGLXQUERYSWAPGROUPNVPROC',
|
|
1014
|
+
'PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC',
|
|
1015
|
+
'PFNGLXRELEASEBUFFERSMESAPROC',
|
|
1016
|
+
'PFNGLXRELEASETEXIMAGEEXTPROC',
|
|
1017
|
+
'PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC',
|
|
1018
|
+
'PFNGLXRELEASEVIDEODEVICENVPROC',
|
|
1019
|
+
'PFNGLXRELEASEVIDEOIMAGENVPROC',
|
|
1020
|
+
'PFNGLXRESETFRAMECOUNTNVPROC',
|
|
1021
|
+
'PFNGLXSELECTEVENTSGIXPROC',
|
|
1022
|
+
'PFNGLXSENDPBUFFERTOVIDEONVPROC',
|
|
1023
|
+
'PFNGLXSET3DFXMODEMESAPROC',
|
|
1024
|
+
'PFNGLXSWAPBUFFERSMSCOMLPROC',
|
|
1025
|
+
'PFNGLXSWAPINTERVALEXTPROC',
|
|
1026
|
+
'PFNGLXSWAPINTERVALSGIPROC',
|
|
1027
|
+
'PFNGLXWAITFORMSCOMLPROC',
|
|
1028
|
+
'PFNGLXWAITFORSBCOMLPROC',
|
|
1029
|
+
'PFNGLXWAITVIDEOSYNCSGIPROC',
|
|
1030
|
+
'GLXBufferClobberEventSGIX',
|
|
1031
|
+
'GLXFBConfigIDSGIX',
|
|
1032
|
+
'GLXFBConfigSGIX',
|
|
1033
|
+
'GLXHyperpipeConfigSGIX',
|
|
1034
|
+
'GLXHyperpipeNetworkSGIX',
|
|
1035
|
+
'GLXPbufferSGIX',
|
|
1036
|
+
'GLXPipeRect',
|
|
1037
|
+
'GLXPipeRectLimits',
|
|
1038
|
+
'GLXVideoCaptureDeviceNV',
|
|
1039
|
+
'GLXVideoDeviceNV',
|
|
1040
|
+
'GLXVideoSourceSGIX',
|
|
1041
|
+
'GLX_ARB_create_context',
|
|
1042
|
+
'GLX_ARB_create_context_profile',
|
|
1043
|
+
'GLX_ARB_create_context_robustness',
|
|
1044
|
+
'GLX_ARB_fbconfig_float',
|
|
1045
|
+
'GLX_ARB_framebuffer_sRGB',
|
|
1046
|
+
'GLX_ARB_multisample',
|
|
1047
|
+
'GLX_EXT_fbconfig_packed_float',
|
|
1048
|
+
'GLX_EXT_framebuffer_sRGB',
|
|
1049
|
+
'GLX_EXT_import_context',
|
|
1050
|
+
'GLX_EXT_swap_control',
|
|
1051
|
+
'GLX_EXT_texture_from_pixmap',
|
|
1052
|
+
'GLX_EXT_visual_info',
|
|
1053
|
+
'GLX_EXT_visual_rating',
|
|
1054
|
+
'GLX_INTEL_swap_event',
|
|
1055
|
+
'GLX_MESA_agp_offset',
|
|
1056
|
+
'GLX_MESA_copy_sub_buffer',
|
|
1057
|
+
'GLX_MESA_pixmap_colormap',
|
|
1058
|
+
'GLX_MESA_release_buffers',
|
|
1059
|
+
'GLX_MESA_set_3dfx_mode',
|
|
1060
|
+
'GLX_NV_copy_image',
|
|
1061
|
+
'GLX_NV_float_buffer',
|
|
1062
|
+
'GLX_NV_multisample_coverage',
|
|
1063
|
+
'GLX_NV_present_video',
|
|
1064
|
+
'GLX_NV_swap_group',
|
|
1065
|
+
'GLX_NV_video_capture',
|
|
1066
|
+
'GLX_NV_video_output',
|
|
1067
|
+
'GLX_OML_swap_method',
|
|
1068
|
+
'GLX_OML_sync_control',
|
|
1069
|
+
'GLX_SGIS_multisample',
|
|
1070
|
+
'GLX_SGIX_dmbuffer',
|
|
1071
|
+
'GLX_SGIX_fbconfig',
|
|
1072
|
+
'GLX_SGIX_hyperpipe',
|
|
1073
|
+
'GLX_SGIX_pbuffer',
|
|
1074
|
+
'GLX_SGIX_swap_barrier',
|
|
1075
|
+
'GLX_SGIX_swap_group',
|
|
1076
|
+
'GLX_SGIX_video_resize',
|
|
1077
|
+
'GLX_SGIX_video_source',
|
|
1078
|
+
'GLX_SGIX_visual_select_group',
|
|
1079
|
+
'GLX_SGI_cushion',
|
|
1080
|
+
'GLX_SGI_make_current_read',
|
|
1081
|
+
'GLX_SGI_swap_control',
|
|
1082
|
+
'GLX_SGI_video_sync',
|
|
1083
|
+
'GLX_SUN_get_transparent_index',
|
|
1084
|
+
'glXBindChannelToWindowSGIX',
|
|
1085
|
+
'glXBindHyperpipeSGIX',
|
|
1086
|
+
'glXBindSwapBarrierNV',
|
|
1087
|
+
'glXBindSwapBarrierSGIX',
|
|
1088
|
+
'glXBindTexImageEXT',
|
|
1089
|
+
'glXBindVideoCaptureDeviceNV',
|
|
1090
|
+
'glXBindVideoDeviceNV',
|
|
1091
|
+
'glXBindVideoImageNV',
|
|
1092
|
+
'glXChannelRectSGIX',
|
|
1093
|
+
'glXChannelRectSyncSGIX',
|
|
1094
|
+
'glXChooseFBConfigSGIX',
|
|
1095
|
+
'glXCopyImageSubDataNV',
|
|
1096
|
+
'glXCopySubBufferMESA',
|
|
1097
|
+
'glXCreateContextAttribsARB',
|
|
1098
|
+
'glXCreateContextWithConfigSGIX',
|
|
1099
|
+
'glXCreateGLXPbufferSGIX',
|
|
1100
|
+
'glXCreateGLXPixmapMESA',
|
|
1101
|
+
'glXCreateGLXPixmapWithConfigSGIX',
|
|
1102
|
+
'glXCushionSGI',
|
|
1103
|
+
'glXDestroyGLXPbufferSGIX',
|
|
1104
|
+
'glXDestroyHyperpipeConfigSGIX',
|
|
1105
|
+
'glXEnumerateVideoCaptureDevicesNV',
|
|
1106
|
+
'glXEnumerateVideoDevicesNV',
|
|
1107
|
+
'glXFreeContextEXT',
|
|
1108
|
+
'glXGetAGPOffsetMESA',
|
|
1109
|
+
'glXGetContextIDEXT',
|
|
1110
|
+
'glXGetCurrentDisplayEXT',
|
|
1111
|
+
'glXGetCurrentReadDrawableSGI',
|
|
1112
|
+
'glXGetFBConfigAttribSGIX',
|
|
1113
|
+
'glXGetFBConfigFromVisualSGIX',
|
|
1114
|
+
'glXGetMscRateOML',
|
|
1115
|
+
'glXGetSelectedEventSGIX',
|
|
1116
|
+
'glXGetSyncValuesOML',
|
|
1117
|
+
'glXGetTransparentIndexSUN',
|
|
1118
|
+
'glXGetVideoDeviceNV',
|
|
1119
|
+
'glXGetVideoInfoNV',
|
|
1120
|
+
'glXGetVideoSyncSGI',
|
|
1121
|
+
'glXGetVisualFromFBConfigSGIX',
|
|
1122
|
+
'glXHyperpipeAttribSGIX',
|
|
1123
|
+
'glXHyperpipeConfigSGIX',
|
|
1124
|
+
'glXImportContextEXT',
|
|
1125
|
+
'glXJoinSwapGroupNV',
|
|
1126
|
+
'glXJoinSwapGroupSGIX',
|
|
1127
|
+
'glXLockVideoCaptureDeviceNV',
|
|
1128
|
+
'glXMakeCurrentReadSGI',
|
|
1129
|
+
'glXQueryChannelDeltasSGIX',
|
|
1130
|
+
'glXQueryChannelRectSGIX',
|
|
1131
|
+
'glXQueryContextInfoEXT',
|
|
1132
|
+
'glXQueryFrameCountNV',
|
|
1133
|
+
'glXQueryGLXPbufferSGIX',
|
|
1134
|
+
'glXQueryHyperpipeAttribSGIX',
|
|
1135
|
+
'glXQueryHyperpipeBestAttribSGIX',
|
|
1136
|
+
'glXQueryHyperpipeConfigSGIX',
|
|
1137
|
+
'glXQueryHyperpipeNetworkSGIX',
|
|
1138
|
+
'glXQueryMaxSwapBarriersSGIX',
|
|
1139
|
+
'glXQueryMaxSwapGroupsNV',
|
|
1140
|
+
'glXQuerySwapGroupNV',
|
|
1141
|
+
'glXQueryVideoCaptureDeviceNV',
|
|
1142
|
+
'glXReleaseBuffersMESA',
|
|
1143
|
+
'glXReleaseTexImageEXT',
|
|
1144
|
+
'glXReleaseVideoCaptureDeviceNV',
|
|
1145
|
+
'glXReleaseVideoDeviceNV',
|
|
1146
|
+
'glXReleaseVideoImageNV',
|
|
1147
|
+
'glXResetFrameCountNV',
|
|
1148
|
+
'glXSelectEventSGIX',
|
|
1149
|
+
'glXSendPbufferToVideoNV',
|
|
1150
|
+
'glXSet3DfxModeMESA',
|
|
1151
|
+
'glXSwapBuffersMscOML',
|
|
1152
|
+
'glXSwapIntervalEXT',
|
|
1153
|
+
'glXSwapIntervalSGI',
|
|
1154
|
+
'glXWaitForMscOML',
|
|
1155
|
+
'glXWaitForSbcOML',
|
|
1156
|
+
'glXWaitVideoSyncSGI',
|
|
1157
|
+
]
|
|
942
1158
|
# END GENERATED CONTENT (do not edit above this line)
|
|
943
1159
|
|
|
944
1160
|
|