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,13 +3,14 @@
|
|
|
3
3
|
Generated by tools/gengl.py.
|
|
4
4
|
Do not modify this file.
|
|
5
5
|
"""
|
|
6
|
+
from __future__ import annotations
|
|
6
7
|
|
|
7
8
|
from ctypes import (
|
|
8
9
|
CFUNCTYPE, POINTER, Structure, c_char, c_ulong, c_float, c_int,
|
|
9
10
|
c_int64, c_int32, c_ubyte, c_uint, c_long,
|
|
10
11
|
)
|
|
11
|
-
from pyglet.gl.lib import link_GLX as _link_function
|
|
12
|
-
from pyglet.gl.lib import c_void
|
|
12
|
+
from pyglet.graphics.api.gl.lib import link_GLX as _link_function
|
|
13
|
+
from pyglet.graphics.api.gl.lib import c_void
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
# BEGIN GENERATED CONTENT (do not edit below this line)
|
|
@@ -17,8 +18,8 @@ from pyglet.gl.lib import c_void
|
|
|
17
18
|
# This content is generated by tools/gengl.py.
|
|
18
19
|
# Wrapper for http://developer.download.nvidia.com/opengl/includes/glxext.h
|
|
19
20
|
|
|
20
|
-
import pyglet.libs.x11.xlib
|
|
21
|
-
import pyglet.gl.glx
|
|
21
|
+
import pyglet.libs.linux.x11.xlib
|
|
22
|
+
import pyglet.graphics.api.gl.xlib.glx
|
|
22
23
|
|
|
23
24
|
# H (/usr/include/GL/glx.h:26)
|
|
24
25
|
# ARB_get_proc_address (/usr/include/GL/glx.h:317)
|
|
@@ -147,7 +148,7 @@ GLX_HYPERPIPE_ID_SGIX = 32816 # GL/glxext.h:240
|
|
|
147
148
|
# MESA_agp_offset (GL/glxext.h:243)
|
|
148
149
|
# ARB_get_proc_address (GL/glxext.h:249)
|
|
149
150
|
# SGIX_video_source (GL/glxext.h:256)
|
|
150
|
-
XID = pyglet.libs.x11.xlib.XID
|
|
151
|
+
XID = pyglet.libs.linux.x11.xlib.XID
|
|
151
152
|
GLXVideoSourceSGIX = XID # GL/glxext.h:257
|
|
152
153
|
# SGIX_fbconfig (GL/glxext.h:260)
|
|
153
154
|
GLXFBConfigIDSGIX = XID # GL/glxext.h:261
|
|
@@ -155,7 +156,7 @@ class struct___GLXFBConfigRec(Structure):
|
|
|
155
156
|
__slots__ = [
|
|
156
157
|
]
|
|
157
158
|
struct___GLXFBConfigRec._fields_ = [
|
|
158
|
-
('_opaque_struct', c_int)
|
|
159
|
+
('_opaque_struct', c_int),
|
|
159
160
|
]
|
|
160
161
|
|
|
161
162
|
GLXFBConfigSGIX = POINTER(struct___GLXFBConfigRec) # GL/glxext.h:262
|
|
@@ -163,22 +164,22 @@ GLXFBConfigSGIX = POINTER(struct___GLXFBConfigRec) # GL/glxext.h:262
|
|
|
163
164
|
GLXPbufferSGIX = XID # GL/glxext.h:266
|
|
164
165
|
class struct_anon_106(Structure):
|
|
165
166
|
__slots__ = [
|
|
166
|
-
'
|
|
167
|
-
'serial',
|
|
168
|
-
'send_event',
|
|
167
|
+
'count',
|
|
169
168
|
'display',
|
|
169
|
+
'draw_type',
|
|
170
170
|
'drawable',
|
|
171
171
|
'event_type',
|
|
172
|
-
'
|
|
172
|
+
'height',
|
|
173
173
|
'mask',
|
|
174
|
+
'send_event',
|
|
175
|
+
'serial',
|
|
176
|
+
'type',
|
|
177
|
+
'width',
|
|
174
178
|
'x',
|
|
175
179
|
'y',
|
|
176
|
-
'width',
|
|
177
|
-
'height',
|
|
178
|
-
'count',
|
|
179
180
|
]
|
|
180
|
-
Display = pyglet.libs.x11.xlib.Display
|
|
181
|
-
GLXDrawable = pyglet.gl.glx.GLXDrawable
|
|
181
|
+
Display = pyglet.libs.linux.x11.xlib.Display
|
|
182
|
+
GLXDrawable = pyglet.graphics.api.gl.xlib.glx.GLXDrawable
|
|
182
183
|
struct_anon_106._fields_ = [
|
|
183
184
|
('type', c_int),
|
|
184
185
|
('serial', c_ulong),
|
|
@@ -272,7 +273,7 @@ PFNGLXWAITVIDEOSYNCSGIPROC = CFUNCTYPE(c_int, c_int, c_int, POINTER(c_uint)) #
|
|
|
272
273
|
PFNGLXGETREFRESHRATESGIPROC = CFUNCTYPE(c_int, POINTER(c_uint)) # GL/glxext.h:410
|
|
273
274
|
# SGI_make_current_read (GL/glxext.h:413)
|
|
274
275
|
GLX_SGI_make_current_read = 1 # GL/glxext.h:414
|
|
275
|
-
GLXContext = pyglet.gl.glx.GLXContext
|
|
276
|
+
GLXContext = pyglet.graphics.api.gl.x11.glx.GLXContext
|
|
276
277
|
# GL/glxext.h:416
|
|
277
278
|
glXMakeCurrentReadSGI = _link_function('glXMakeCurrentReadSGI', c_int, [POINTER(Display), GLXDrawable, GLXDrawable, GLXContext], 'SGI_make_current_read')
|
|
278
279
|
|
|
@@ -293,7 +294,7 @@ glXGetCurrentDisplayEXT = _link_function('glXGetCurrentDisplayEXT', POINTER(Disp
|
|
|
293
294
|
# GL/glxext.h:443
|
|
294
295
|
glXQueryContextInfoEXT = _link_function('glXQueryContextInfoEXT', c_int, [POINTER(Display), GLXContext, c_int, POINTER(c_int)], 'EXT_import_context')
|
|
295
296
|
|
|
296
|
-
GLXContextID = pyglet.gl.glx.GLXContextID
|
|
297
|
+
GLXContextID = pyglet.graphics.api.gl.x11.glx.GLXContextID
|
|
297
298
|
# GL/glxext.h:444
|
|
298
299
|
glXGetContextIDEXT = _link_function('glXGetContextIDEXT', GLXContextID, [GLXContext], 'EXT_import_context')
|
|
299
300
|
|
|
@@ -316,15 +317,15 @@ glXGetFBConfigAttribSGIX = _link_function('glXGetFBConfigAttribSGIX', c_int, [PO
|
|
|
316
317
|
# GL/glxext.h:459
|
|
317
318
|
glXChooseFBConfigSGIX = _link_function('glXChooseFBConfigSGIX', POINTER(GLXFBConfigSGIX), [POINTER(Display), c_int, POINTER(c_int), POINTER(c_int)], 'SGIX_fbconfig')
|
|
318
319
|
|
|
319
|
-
GLXPixmap = pyglet.gl.glx.GLXPixmap
|
|
320
|
-
Pixmap = pyglet.libs.x11.xlib.Pixmap
|
|
320
|
+
GLXPixmap = pyglet.graphics.api.gl.x11.glx.GLXPixmap
|
|
321
|
+
Pixmap = pyglet.libs.linux.x11.xlib.Pixmap
|
|
321
322
|
# GL/glxext.h:460
|
|
322
323
|
glXCreateGLXPixmapWithConfigSGIX = _link_function('glXCreateGLXPixmapWithConfigSGIX', GLXPixmap, [POINTER(Display), GLXFBConfigSGIX, Pixmap], 'SGIX_fbconfig')
|
|
323
324
|
|
|
324
325
|
# GL/glxext.h:461
|
|
325
326
|
glXCreateContextWithConfigSGIX = _link_function('glXCreateContextWithConfigSGIX', GLXContext, [POINTER(Display), GLXFBConfigSGIX, c_int, GLXContext, c_int], 'SGIX_fbconfig')
|
|
326
327
|
|
|
327
|
-
XVisualInfo = pyglet.libs.x11.xlib.XVisualInfo
|
|
328
|
+
XVisualInfo = pyglet.libs.linux.x11.xlib.XVisualInfo
|
|
328
329
|
# GL/glxext.h:462
|
|
329
330
|
glXGetVisualFromFBConfigSGIX = _link_function('glXGetVisualFromFBConfigSGIX', POINTER(XVisualInfo), [POINTER(Display), GLXFBConfigSGIX], 'SGIX_fbconfig')
|
|
330
331
|
|
|
@@ -361,7 +362,7 @@ PFNGLXSELECTEVENTSGIXPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, c_ulo
|
|
|
361
362
|
PFNGLXGETSELECTEDEVENTSGIXPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, POINTER(c_ulong)) # GL/glxext.h:486
|
|
362
363
|
# SGI_cushion (GL/glxext.h:489)
|
|
363
364
|
GLX_SGI_cushion = 1 # GL/glxext.h:490
|
|
364
|
-
Window = pyglet.libs.x11.xlib.Window
|
|
365
|
+
Window = pyglet.libs.linux.x11.xlib.Window
|
|
365
366
|
# GL/glxext.h:492
|
|
366
367
|
glXCushionSGI = _link_function('glXCushionSGI', None, [POINTER(Display), Window, c_float], 'SGI_cushion')
|
|
367
368
|
|
|
@@ -421,7 +422,7 @@ glXCopySubBufferMESA = _link_function('glXCopySubBufferMESA', None, [POINTER(Dis
|
|
|
421
422
|
PFNGLXCOPYSUBBUFFERMESAPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, c_int, c_int, c_int, c_int) # GL/glxext.h:554
|
|
422
423
|
# MESA_pixmap_colormap (GL/glxext.h:557)
|
|
423
424
|
GLX_MESA_pixmap_colormap = 1 # GL/glxext.h:558
|
|
424
|
-
Colormap = pyglet.libs.x11.xlib.Colormap
|
|
425
|
+
Colormap = pyglet.libs.linux.x11.xlib.Colormap
|
|
425
426
|
# GL/glxext.h:560
|
|
426
427
|
glXCreateGLXPixmapMESA = _link_function('glXCreateGLXPixmapMESA', GLXPixmap, [POINTER(Display), POINTER(XVisualInfo), Pixmap, Colormap], 'MESA_pixmap_colormap')
|
|
427
428
|
|
|
@@ -470,8 +471,8 @@ GLX_NV_float_buffer = 1 # GL/glxext.h:606
|
|
|
470
471
|
GLX_SGIX_hyperpipe = 1 # GL/glxext.h:610
|
|
471
472
|
class struct_anon_107(Structure):
|
|
472
473
|
__slots__ = [
|
|
473
|
-
'pipeName',
|
|
474
474
|
'networkId',
|
|
475
|
+
'pipeName',
|
|
475
476
|
]
|
|
476
477
|
struct_anon_107._fields_ = [
|
|
477
478
|
('pipeName', c_char * 80),
|
|
@@ -481,9 +482,9 @@ struct_anon_107._fields_ = [
|
|
|
481
482
|
GLXHyperpipeNetworkSGIX = struct_anon_107 # GL/glxext.h:615
|
|
482
483
|
class struct_anon_108(Structure):
|
|
483
484
|
__slots__ = [
|
|
484
|
-
'pipeName',
|
|
485
485
|
'channel',
|
|
486
486
|
'participationType',
|
|
487
|
+
'pipeName',
|
|
487
488
|
'timeSlice',
|
|
488
489
|
]
|
|
489
490
|
struct_anon_108._fields_ = [
|
|
@@ -496,15 +497,15 @@ struct_anon_108._fields_ = [
|
|
|
496
497
|
GLXHyperpipeConfigSGIX = struct_anon_108 # GL/glxext.h:623
|
|
497
498
|
class struct_anon_109(Structure):
|
|
498
499
|
__slots__ = [
|
|
500
|
+
'destHeight',
|
|
501
|
+
'destWidth',
|
|
502
|
+
'destXOrigin',
|
|
503
|
+
'destYOrigin',
|
|
499
504
|
'pipeName',
|
|
505
|
+
'srcHeight',
|
|
506
|
+
'srcWidth',
|
|
500
507
|
'srcXOrigin',
|
|
501
508
|
'srcYOrigin',
|
|
502
|
-
'srcWidth',
|
|
503
|
-
'srcHeight',
|
|
504
|
-
'destXOrigin',
|
|
505
|
-
'destYOrigin',
|
|
506
|
-
'destWidth',
|
|
507
|
-
'destHeight',
|
|
508
509
|
]
|
|
509
510
|
struct_anon_109._fields_ = [
|
|
510
511
|
('pipeName', c_char * 80),
|
|
@@ -521,11 +522,11 @@ struct_anon_109._fields_ = [
|
|
|
521
522
|
GLXPipeRect = struct_anon_109 # GL/glxext.h:629
|
|
522
523
|
class struct_anon_110(Structure):
|
|
523
524
|
__slots__ = [
|
|
524
|
-
'pipeName',
|
|
525
525
|
'XOrigin',
|
|
526
526
|
'YOrigin',
|
|
527
527
|
'maxHeight',
|
|
528
528
|
'maxWidth',
|
|
529
|
+
'pipeName',
|
|
529
530
|
]
|
|
530
531
|
struct_anon_110._fields_ = [
|
|
531
532
|
('pipeName', c_char * 80),
|
|
@@ -576,20 +577,20 @@ glXGetAGPOffsetMESA = _link_function('glXGetAGPOffsetMESA', c_uint, [POINTER(Non
|
|
|
576
577
|
PFNGLXGETAGPOFFSETMESAPROC = CFUNCTYPE(c_uint, POINTER(None)) # GL/glxext.h:661
|
|
577
578
|
# NV_vertex_array_range (GL/glxext.h:667)
|
|
578
579
|
GLX_NV_vertex_array_range = 1 # GL/glxext.h:668
|
|
579
|
-
GLsizei = pyglet.gl.glx.GLsizei
|
|
580
|
-
GLfloat = pyglet.gl.glx.GLfloat
|
|
580
|
+
GLsizei = pyglet.graphics.api.gl.x11.glx.GLsizei
|
|
581
|
+
GLfloat = pyglet.graphics.api.gl.x11.glx.GLfloat
|
|
581
582
|
# GL/glxext.h:670
|
|
582
583
|
glXAllocateMemoryNV = _link_function('glXAllocateMemoryNV', POINTER(c_void), [GLsizei, GLfloat, GLfloat, GLfloat], 'NV_vertex_array_range')
|
|
583
584
|
|
|
584
|
-
GLvoid = pyglet.gl.glx.GLvoid
|
|
585
|
+
GLvoid = pyglet.graphics.api.gl.x11.glx.GLvoid
|
|
585
586
|
# GL/glxext.h:673
|
|
586
587
|
glXFreeMemoryNV = _link_function('glXFreeMemoryNV', None, [POINTER(GLvoid)], 'NV_vertex_array_range')
|
|
587
588
|
|
|
588
|
-
PFNGLXALLOCATEMEMORYNVPROC = pyglet.gl.glx.PFNGLXALLOCATEMEMORYNVPROC
|
|
589
|
-
PFNGLXFREEMEMORYNVPROC = pyglet.gl.glx.PFNGLXFREEMEMORYNVPROC
|
|
589
|
+
PFNGLXALLOCATEMEMORYNVPROC = pyglet.graphics.api.gl.x11.glx.PFNGLXALLOCATEMEMORYNVPROC
|
|
590
|
+
PFNGLXFREEMEMORYNVPROC = pyglet.graphics.api.gl.x11.glx.PFNGLXFREEMEMORYNVPROC
|
|
590
591
|
# NV_swap_group (GL/glxext.h:683)
|
|
591
592
|
GLX_NV_swap_group = 1 # GL/glxext.h:684
|
|
592
|
-
GLuint = pyglet.gl.glx.GLuint
|
|
593
|
+
GLuint = pyglet.graphics.api.gl.x11.glx.GLuint
|
|
593
594
|
# GL/glxext.h:686
|
|
594
595
|
glXJoinSwapGroupNV = _link_function('glXJoinSwapGroupNV', c_int, [POINTER(Display), GLXDrawable, GLuint], 'NV_swap_group')
|
|
595
596
|
|
|
@@ -622,7 +623,7 @@ glXGetVideoDeviceNV = _link_function('glXGetVideoDeviceNV', c_int, [POINTER(Disp
|
|
|
622
623
|
# GL/glxext.h:732
|
|
623
624
|
glXReleaseVideoDeviceNV = _link_function('glXReleaseVideoDeviceNV', c_int, [POINTER(Display), c_int, GLXVideoDeviceNV], 'NV_video_out')
|
|
624
625
|
|
|
625
|
-
GLXPbuffer = pyglet.gl.glx.GLXPbuffer
|
|
626
|
+
GLXPbuffer = pyglet.graphics.api.gl.x11.glx.GLXPbuffer
|
|
626
627
|
# GL/glxext.h:735
|
|
627
628
|
glXBindVideoImageNV = _link_function('glXBindVideoImageNV', c_int, [POINTER(Display), GLXVideoDeviceNV, GLXPbuffer, c_int], 'NV_video_out')
|
|
628
629
|
|
|
@@ -659,132 +660,312 @@ PFNGLXRELEASETEXIMAGEEXTPROC = CFUNCTYPE(None, POINTER(Display), GLXDrawable, c_
|
|
|
659
660
|
# MESA_swap_control (/usr/include/GL/glx.h:425)
|
|
660
661
|
# EXT_texture_from_pixmap (/usr/include/GL/glx.h:442)
|
|
661
662
|
|
|
662
|
-
__all__ = [
|
|
663
|
-
'
|
|
664
|
-
'
|
|
665
|
-
'
|
|
666
|
-
'
|
|
667
|
-
'
|
|
668
|
-
'
|
|
669
|
-
'
|
|
670
|
-
'
|
|
671
|
-
'
|
|
672
|
-
'
|
|
673
|
-
'
|
|
674
|
-
'
|
|
675
|
-
'
|
|
676
|
-
'
|
|
677
|
-
'
|
|
678
|
-
'
|
|
679
|
-
'
|
|
680
|
-
'
|
|
681
|
-
'
|
|
682
|
-
'
|
|
683
|
-
'
|
|
684
|
-
'
|
|
685
|
-
'
|
|
686
|
-
'
|
|
687
|
-
'
|
|
688
|
-
'
|
|
689
|
-
'
|
|
690
|
-
'
|
|
691
|
-
'
|
|
692
|
-
'
|
|
693
|
-
'
|
|
694
|
-
'
|
|
695
|
-
'
|
|
696
|
-
'
|
|
697
|
-
'
|
|
698
|
-
'
|
|
699
|
-
'
|
|
700
|
-
'
|
|
701
|
-
'
|
|
702
|
-
'
|
|
703
|
-
'
|
|
704
|
-
'
|
|
705
|
-
'
|
|
706
|
-
'
|
|
707
|
-
'
|
|
708
|
-
'
|
|
709
|
-
'
|
|
710
|
-
'
|
|
711
|
-
'
|
|
712
|
-
'
|
|
713
|
-
'
|
|
714
|
-
'
|
|
715
|
-
'
|
|
716
|
-
'
|
|
717
|
-
'
|
|
718
|
-
'
|
|
719
|
-
'
|
|
720
|
-
'
|
|
721
|
-
'
|
|
722
|
-
'
|
|
723
|
-
'
|
|
724
|
-
'
|
|
725
|
-
'
|
|
726
|
-
'
|
|
727
|
-
'
|
|
728
|
-
'
|
|
729
|
-
'
|
|
730
|
-
'
|
|
731
|
-
'
|
|
732
|
-
'
|
|
733
|
-
'
|
|
734
|
-
'
|
|
735
|
-
'
|
|
736
|
-
'
|
|
737
|
-
'
|
|
738
|
-
'
|
|
739
|
-
'
|
|
740
|
-
'
|
|
741
|
-
'
|
|
742
|
-
'
|
|
743
|
-
'
|
|
744
|
-
'
|
|
745
|
-
'
|
|
746
|
-
'
|
|
747
|
-
'
|
|
748
|
-
'
|
|
749
|
-
'
|
|
750
|
-
'
|
|
751
|
-
'
|
|
752
|
-
'
|
|
753
|
-
'
|
|
754
|
-
'
|
|
755
|
-
'
|
|
756
|
-
'
|
|
757
|
-
'
|
|
758
|
-
'
|
|
759
|
-
'
|
|
760
|
-
'
|
|
761
|
-
'
|
|
762
|
-
'
|
|
763
|
-
'
|
|
764
|
-
'
|
|
765
|
-
'
|
|
766
|
-
'
|
|
767
|
-
'
|
|
768
|
-
'
|
|
769
|
-
'
|
|
770
|
-
'
|
|
771
|
-
'
|
|
772
|
-
'
|
|
773
|
-
'
|
|
774
|
-
'
|
|
775
|
-
'
|
|
776
|
-
'
|
|
777
|
-
'
|
|
778
|
-
'
|
|
779
|
-
'
|
|
780
|
-
'
|
|
781
|
-
'
|
|
782
|
-
'
|
|
783
|
-
'
|
|
784
|
-
'
|
|
785
|
-
'
|
|
786
|
-
'
|
|
787
|
-
'
|
|
663
|
+
__all__ = [
|
|
664
|
+
'GLX_3DFX_FULLSCREEN_MODE_MESA',
|
|
665
|
+
'GLX_3DFX_WINDOW_MODE_MESA',
|
|
666
|
+
'GLX_ACCUM_BUFFER_BIT_SGIX',
|
|
667
|
+
'GLX_AUX0_EXT',
|
|
668
|
+
'GLX_AUX1_EXT',
|
|
669
|
+
'GLX_AUX2_EXT',
|
|
670
|
+
'GLX_AUX3_EXT',
|
|
671
|
+
'GLX_AUX4_EXT',
|
|
672
|
+
'GLX_AUX5_EXT',
|
|
673
|
+
'GLX_AUX6_EXT',
|
|
674
|
+
'GLX_AUX7_EXT',
|
|
675
|
+
'GLX_AUX8_EXT',
|
|
676
|
+
'GLX_AUX9_EXT',
|
|
677
|
+
'GLX_AUX_BUFFERS_BIT_SGIX',
|
|
678
|
+
'GLX_BACK_EXT',
|
|
679
|
+
'GLX_BACK_LEFT_BUFFER_BIT_SGIX',
|
|
680
|
+
'GLX_BACK_LEFT_EXT',
|
|
681
|
+
'GLX_BACK_RIGHT_BUFFER_BIT_SGIX',
|
|
682
|
+
'GLX_BACK_RIGHT_EXT',
|
|
683
|
+
'GLX_BAD_HYPERPIPE_CONFIG_SGIX',
|
|
684
|
+
'GLX_BAD_HYPERPIPE_SGIX',
|
|
685
|
+
'GLX_BIND_TO_MIPMAP_TEXTURE_EXT',
|
|
686
|
+
'GLX_BIND_TO_TEXTURE_RGBA_EXT',
|
|
687
|
+
'GLX_BIND_TO_TEXTURE_RGB_EXT',
|
|
688
|
+
'GLX_BIND_TO_TEXTURE_TARGETS_EXT',
|
|
689
|
+
'GLX_BLENDED_RGBA_SGIS',
|
|
690
|
+
'GLX_BUFFER_CLOBBER_MASK_SGIX',
|
|
691
|
+
'GLX_COLOR_INDEX_BIT_SGIX',
|
|
692
|
+
'GLX_COLOR_INDEX_TYPE_SGIX',
|
|
693
|
+
'GLX_DAMAGED_SGIX',
|
|
694
|
+
'GLX_DEPTH_BUFFER_BIT_SGIX',
|
|
695
|
+
'GLX_DIGITAL_MEDIA_PBUFFER_SGIX',
|
|
696
|
+
'GLX_DIRECT_COLOR_EXT',
|
|
697
|
+
'GLX_DRAWABLE_TYPE_SGIX',
|
|
698
|
+
'GLX_EVENT_MASK_SGIX',
|
|
699
|
+
'GLX_FBCONFIG_ID_SGIX',
|
|
700
|
+
'GLX_FLOAT_COMPONENTS_NV',
|
|
701
|
+
'GLX_FRONT_EXT',
|
|
702
|
+
'GLX_FRONT_LEFT_BUFFER_BIT_SGIX',
|
|
703
|
+
'GLX_FRONT_LEFT_EXT',
|
|
704
|
+
'GLX_FRONT_RIGHT_BUFFER_BIT_SGIX',
|
|
705
|
+
'GLX_FRONT_RIGHT_EXT',
|
|
706
|
+
'GLX_GLXEXT_VERSION',
|
|
707
|
+
'GLX_GRAY_SCALE_EXT',
|
|
708
|
+
'GLX_HEIGHT_SGIX',
|
|
709
|
+
'GLX_HYPERPIPE_DISPLAY_PIPE_SGIX',
|
|
710
|
+
'GLX_HYPERPIPE_ID_SGIX',
|
|
711
|
+
'GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX',
|
|
712
|
+
'GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX',
|
|
713
|
+
'GLX_HYPERPIPE_RENDER_PIPE_SGIX',
|
|
714
|
+
'GLX_HYPERPIPE_STEREO_SGIX',
|
|
715
|
+
'GLX_LARGEST_PBUFFER_SGIX',
|
|
716
|
+
'GLX_MAX_PBUFFER_HEIGHT_SGIX',
|
|
717
|
+
'GLX_MAX_PBUFFER_PIXELS_SGIX',
|
|
718
|
+
'GLX_MAX_PBUFFER_WIDTH_SGIX',
|
|
719
|
+
'GLX_MIPMAP_TEXTURE_EXT',
|
|
720
|
+
'GLX_MULTISAMPLE_SUB_RECT_HEIGHT_SGIS',
|
|
721
|
+
'GLX_MULTISAMPLE_SUB_RECT_WIDTH_SGIS',
|
|
722
|
+
'GLX_NONE_EXT',
|
|
723
|
+
'GLX_NON_CONFORMANT_VISUAL_EXT',
|
|
724
|
+
'GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX',
|
|
725
|
+
'GLX_OPTIMAL_PBUFFER_WIDTH_SGIX',
|
|
726
|
+
'GLX_PBUFFER_BIT_SGIX',
|
|
727
|
+
'GLX_PBUFFER_SGIX',
|
|
728
|
+
'GLX_PIPE_RECT_LIMITS_SGIX',
|
|
729
|
+
'GLX_PIPE_RECT_SGIX',
|
|
730
|
+
'GLX_PIXMAP_BIT_SGIX',
|
|
731
|
+
'GLX_PRESERVED_CONTENTS_SGIX',
|
|
732
|
+
'GLX_PSEUDO_COLOR_EXT',
|
|
733
|
+
'GLX_RENDER_TYPE_SGIX',
|
|
734
|
+
'GLX_RGBA_BIT_SGIX',
|
|
735
|
+
'GLX_RGBA_FLOAT_BIT_ARB',
|
|
736
|
+
'GLX_RGBA_FLOAT_TYPE_ARB',
|
|
737
|
+
'GLX_RGBA_TYPE_SGIX',
|
|
738
|
+
'GLX_SAMPLES_3DFX',
|
|
739
|
+
'GLX_SAMPLES_ARB',
|
|
740
|
+
'GLX_SAMPLES_SGIS',
|
|
741
|
+
'GLX_SAMPLE_BUFFERS_3DFX',
|
|
742
|
+
'GLX_SAMPLE_BUFFERS_ARB',
|
|
743
|
+
'GLX_SAMPLE_BUFFERS_BIT_SGIX',
|
|
744
|
+
'GLX_SAMPLE_BUFFERS_SGIS',
|
|
745
|
+
'GLX_SAVED_SGIX',
|
|
746
|
+
'GLX_SCREEN_EXT',
|
|
747
|
+
'GLX_SHARE_CONTEXT_EXT',
|
|
748
|
+
'GLX_SLOW_VISUAL_EXT',
|
|
749
|
+
'GLX_STATIC_COLOR_EXT',
|
|
750
|
+
'GLX_STATIC_GRAY_EXT',
|
|
751
|
+
'GLX_STENCIL_BUFFER_BIT_SGIX',
|
|
752
|
+
'GLX_SWAP_COPY_OML',
|
|
753
|
+
'GLX_SWAP_EXCHANGE_OML',
|
|
754
|
+
'GLX_SWAP_METHOD_OML',
|
|
755
|
+
'GLX_SWAP_UNDEFINED_OML',
|
|
756
|
+
'GLX_SYNC_FRAME_SGIX',
|
|
757
|
+
'GLX_SYNC_SWAP_SGIX',
|
|
758
|
+
'GLX_TEXTURE_1D_BIT_EXT',
|
|
759
|
+
'GLX_TEXTURE_1D_EXT',
|
|
760
|
+
'GLX_TEXTURE_2D_BIT_EXT',
|
|
761
|
+
'GLX_TEXTURE_2D_EXT',
|
|
762
|
+
'GLX_TEXTURE_FORMAT_EXT',
|
|
763
|
+
'GLX_TEXTURE_FORMAT_NONE_EXT',
|
|
764
|
+
'GLX_TEXTURE_FORMAT_RGBA_EXT',
|
|
765
|
+
'GLX_TEXTURE_FORMAT_RGB_EXT',
|
|
766
|
+
'GLX_TEXTURE_RECTANGLE_BIT_EXT',
|
|
767
|
+
'GLX_TEXTURE_RECTANGLE_EXT',
|
|
768
|
+
'GLX_TEXTURE_TARGET_EXT',
|
|
769
|
+
'GLX_TRANSPARENT_ALPHA_VALUE_EXT',
|
|
770
|
+
'GLX_TRANSPARENT_BLUE_VALUE_EXT',
|
|
771
|
+
'GLX_TRANSPARENT_GREEN_VALUE_EXT',
|
|
772
|
+
'GLX_TRANSPARENT_INDEX_EXT',
|
|
773
|
+
'GLX_TRANSPARENT_INDEX_VALUE_EXT',
|
|
774
|
+
'GLX_TRANSPARENT_RED_VALUE_EXT',
|
|
775
|
+
'GLX_TRANSPARENT_RGB_EXT',
|
|
776
|
+
'GLX_TRANSPARENT_TYPE_EXT',
|
|
777
|
+
'GLX_TRUE_COLOR_EXT',
|
|
778
|
+
'GLX_VIDEO_OUT_ALPHA_NV',
|
|
779
|
+
'GLX_VIDEO_OUT_COLOR_AND_ALPHA_NV',
|
|
780
|
+
'GLX_VIDEO_OUT_COLOR_AND_DEPTH_NV',
|
|
781
|
+
'GLX_VIDEO_OUT_COLOR_NV',
|
|
782
|
+
'GLX_VIDEO_OUT_DEPTH_NV',
|
|
783
|
+
'GLX_VIDEO_OUT_FIELD_1_NV',
|
|
784
|
+
'GLX_VIDEO_OUT_FIELD_2_NV',
|
|
785
|
+
'GLX_VIDEO_OUT_FRAME_NV',
|
|
786
|
+
'GLX_VISUAL_CAVEAT_EXT',
|
|
787
|
+
'GLX_VISUAL_ID_EXT',
|
|
788
|
+
'GLX_VISUAL_SELECT_GROUP_SGIX',
|
|
789
|
+
'GLX_WIDTH_SGIX',
|
|
790
|
+
'GLX_WINDOW_BIT_SGIX',
|
|
791
|
+
'GLX_WINDOW_SGIX',
|
|
792
|
+
'GLX_X_RENDERABLE_SGIX',
|
|
793
|
+
'GLX_X_VISUAL_TYPE_EXT',
|
|
794
|
+
'GLX_Y_INVERTED_EXT',
|
|
795
|
+
'PFNGLXALLOCATEMEMORYNVPROC',
|
|
796
|
+
'PFNGLXBINDCHANNELTOWINDOWSGIXPROC',
|
|
797
|
+
'PFNGLXBINDHYPERPIPESGIXPROC',
|
|
798
|
+
'PFNGLXBINDSWAPBARRIERNVPROC',
|
|
799
|
+
'PFNGLXBINDSWAPBARRIERSGIXPROC',
|
|
800
|
+
'PFNGLXBINDTEXIMAGEEXTPROC',
|
|
801
|
+
'PFNGLXBINDVIDEOIMAGENVPROC',
|
|
802
|
+
'PFNGLXCHANNELRECTSGIXPROC',
|
|
803
|
+
'PFNGLXCHANNELRECTSYNCSGIXPROC',
|
|
804
|
+
'PFNGLXCHOOSEFBCONFIGSGIXPROC',
|
|
805
|
+
'PFNGLXCOPYSUBBUFFERMESAPROC',
|
|
806
|
+
'PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC',
|
|
807
|
+
'PFNGLXCREATEGLXPBUFFERSGIXPROC',
|
|
808
|
+
'PFNGLXCREATEGLXPIXMAPMESAPROC',
|
|
809
|
+
'PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC',
|
|
810
|
+
'PFNGLXCUSHIONSGIPROC',
|
|
811
|
+
'PFNGLXDESTROYGLXPBUFFERSGIXPROC',
|
|
812
|
+
'PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC',
|
|
813
|
+
'PFNGLXFREECONTEXTEXTPROC',
|
|
814
|
+
'PFNGLXFREEMEMORYNVPROC',
|
|
815
|
+
'PFNGLXGETAGPOFFSETMESAPROC',
|
|
816
|
+
'PFNGLXGETCONTEXTIDEXTPROC',
|
|
817
|
+
'PFNGLXGETCURRENTDISPLAYEXTPROC',
|
|
818
|
+
'PFNGLXGETCURRENTREADDRAWABLESGIPROC',
|
|
819
|
+
'PFNGLXGETFBCONFIGATTRIBSGIXPROC',
|
|
820
|
+
'PFNGLXGETFBCONFIGFROMVISUALSGIXPROC',
|
|
821
|
+
'PFNGLXGETMSCRATEOMLPROC',
|
|
822
|
+
'PFNGLXGETREFRESHRATESGIPROC',
|
|
823
|
+
'PFNGLXGETSELECTEDEVENTSGIXPROC',
|
|
824
|
+
'PFNGLXGETSYNCVALUESOMLPROC',
|
|
825
|
+
'PFNGLXGETTRANSPARENTINDEXSUNPROC',
|
|
826
|
+
'PFNGLXGETVIDEODEVICENVPROC',
|
|
827
|
+
'PFNGLXGETVIDEOINFONVPROC',
|
|
828
|
+
'PFNGLXGETVIDEOSYNCSGIPROC',
|
|
829
|
+
'PFNGLXGETVISUALFROMFBCONFIGSGIXPROC',
|
|
830
|
+
'PFNGLXHYPERPIPEATTRIBSGIXPROC',
|
|
831
|
+
'PFNGLXHYPERPIPECONFIGSGIXPROC',
|
|
832
|
+
'PFNGLXIMPORTCONTEXTEXTPROC',
|
|
833
|
+
'PFNGLXJOINSWAPGROUPNVPROC',
|
|
834
|
+
'PFNGLXJOINSWAPGROUPSGIXPROC',
|
|
835
|
+
'PFNGLXMAKECURRENTREADSGIPROC',
|
|
836
|
+
'PFNGLXQUERYCHANNELDELTASSGIXPROC',
|
|
837
|
+
'PFNGLXQUERYCHANNELRECTSGIXPROC',
|
|
838
|
+
'PFNGLXQUERYCONTEXTINFOEXTPROC',
|
|
839
|
+
'PFNGLXQUERYFRAMECOUNTNVPROC',
|
|
840
|
+
'PFNGLXQUERYGLXPBUFFERSGIXPROC',
|
|
841
|
+
'PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC',
|
|
842
|
+
'PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC',
|
|
843
|
+
'PFNGLXQUERYHYPERPIPECONFIGSGIXPROC',
|
|
844
|
+
'PFNGLXQUERYHYPERPIPENETWORKSGIXPROC',
|
|
845
|
+
'PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC',
|
|
846
|
+
'PFNGLXQUERYMAXSWAPGROUPSNVPROC',
|
|
847
|
+
'PFNGLXQUERYSWAPGROUPNVPROC',
|
|
848
|
+
'PFNGLXRELEASEBUFFERSMESAPROC',
|
|
849
|
+
'PFNGLXRELEASETEXIMAGEEXTPROC',
|
|
850
|
+
'PFNGLXRELEASEVIDEODEVICENVPROC',
|
|
851
|
+
'PFNGLXRELEASEVIDEOIMAGENVPROC',
|
|
852
|
+
'PFNGLXRESETFRAMECOUNTNVPROC',
|
|
853
|
+
'PFNGLXSELECTEVENTSGIXPROC',
|
|
854
|
+
'PFNGLXSENDPBUFFERTOVIDEONVPROC',
|
|
855
|
+
'PFNGLXSET3DFXMODEMESAPROC',
|
|
856
|
+
'PFNGLXSWAPBUFFERSMSCOMLPROC',
|
|
857
|
+
'PFNGLXSWAPINTERVALSGIPROC',
|
|
858
|
+
'PFNGLXWAITFORMSCOMLPROC',
|
|
859
|
+
'PFNGLXWAITFORSBCOMLPROC',
|
|
860
|
+
'PFNGLXWAITVIDEOSYNCSGIPROC',
|
|
861
|
+
'GLXBufferClobberEventSGIX',
|
|
862
|
+
'GLXFBConfigIDSGIX',
|
|
863
|
+
'GLXFBConfigSGIX',
|
|
864
|
+
'GLXHyperpipeConfigSGIX',
|
|
865
|
+
'GLXHyperpipeNetworkSGIX',
|
|
866
|
+
'GLXPbufferSGIX',
|
|
867
|
+
'GLXPipeRect',
|
|
868
|
+
'GLXPipeRectLimits',
|
|
869
|
+
'GLXVideoDeviceNV',
|
|
870
|
+
'GLXVideoSourceSGIX',
|
|
871
|
+
'GLX_ARB_fbconfig_float',
|
|
872
|
+
'GLX_ARB_multisample',
|
|
873
|
+
'GLX_EXT_import_context',
|
|
874
|
+
'GLX_EXT_visual_info',
|
|
875
|
+
'GLX_EXT_visual_rating',
|
|
876
|
+
'GLX_MESA_agp_offset',
|
|
877
|
+
'GLX_MESA_copy_sub_buffer',
|
|
878
|
+
'GLX_MESA_pixmap_colormap',
|
|
879
|
+
'GLX_MESA_release_buffers',
|
|
880
|
+
'GLX_MESA_set_3dfx_mode',
|
|
881
|
+
'GLX_NV_float_buffer',
|
|
882
|
+
'GLX_NV_swap_group',
|
|
883
|
+
'GLX_NV_vertex_array_range',
|
|
884
|
+
'GLX_NV_video_out',
|
|
885
|
+
'GLX_OML_swap_method',
|
|
886
|
+
'GLX_OML_sync_control',
|
|
887
|
+
'GLX_SGIS_multisample',
|
|
888
|
+
'GLX_SGIX_dmbuffer',
|
|
889
|
+
'GLX_SGIX_fbconfig',
|
|
890
|
+
'GLX_SGIX_hyperpipe',
|
|
891
|
+
'GLX_SGIX_pbuffer',
|
|
892
|
+
'GLX_SGIX_swap_barrier',
|
|
893
|
+
'GLX_SGIX_swap_group',
|
|
894
|
+
'GLX_SGIX_video_resize',
|
|
895
|
+
'GLX_SGIX_video_source',
|
|
896
|
+
'GLX_SGIX_visual_select_group',
|
|
897
|
+
'GLX_SGI_cushion',
|
|
898
|
+
'GLX_SGI_make_current_read',
|
|
899
|
+
'GLX_SGI_swap_control',
|
|
900
|
+
'GLX_SGI_video_sync',
|
|
901
|
+
'GLX_SUN_get_transparent_index',
|
|
902
|
+
'glXAllocateMemoryNV',
|
|
903
|
+
'glXBindChannelToWindowSGIX',
|
|
904
|
+
'glXBindHyperpipeSGIX',
|
|
905
|
+
'glXBindSwapBarrierNV',
|
|
906
|
+
'glXBindSwapBarrierSGIX',
|
|
907
|
+
'glXBindTexImageEXT',
|
|
908
|
+
'glXBindVideoImageNV',
|
|
909
|
+
'glXChannelRectSGIX',
|
|
910
|
+
'glXChannelRectSyncSGIX',
|
|
911
|
+
'glXChooseFBConfigSGIX',
|
|
912
|
+
'glXCopySubBufferMESA',
|
|
913
|
+
'glXCreateContextWithConfigSGIX',
|
|
914
|
+
'glXCreateGLXPbufferSGIX',
|
|
915
|
+
'glXCreateGLXPixmapMESA',
|
|
916
|
+
'glXCreateGLXPixmapWithConfigSGIX',
|
|
917
|
+
'glXCushionSGI',
|
|
918
|
+
'glXDestroyGLXPbufferSGIX',
|
|
919
|
+
'glXDestroyHyperpipeConfigSGIX',
|
|
920
|
+
'glXFreeContextEXT',
|
|
921
|
+
'glXFreeMemoryNV',
|
|
922
|
+
'glXGetAGPOffsetMESA',
|
|
923
|
+
'glXGetContextIDEXT',
|
|
924
|
+
'glXGetCurrentDisplayEXT',
|
|
925
|
+
'glXGetCurrentReadDrawableSGI',
|
|
926
|
+
'glXGetFBConfigAttribSGIX',
|
|
927
|
+
'glXGetFBConfigFromVisualSGIX',
|
|
928
|
+
'glXGetMscRateOML',
|
|
929
|
+
'glXGetRefreshRateSGI',
|
|
930
|
+
'glXGetSelectedEventSGIX',
|
|
931
|
+
'glXGetSyncValuesOML',
|
|
932
|
+
'glXGetTransparentIndexSUN',
|
|
933
|
+
'glXGetVideoDeviceNV',
|
|
934
|
+
'glXGetVideoInfoNV',
|
|
935
|
+
'glXGetVideoSyncSGI',
|
|
936
|
+
'glXGetVisualFromFBConfigSGIX',
|
|
937
|
+
'glXHyperpipeAttribSGIX',
|
|
938
|
+
'glXHyperpipeConfigSGIX',
|
|
939
|
+
'glXImportContextEXT',
|
|
940
|
+
'glXJoinSwapGroupNV',
|
|
941
|
+
'glXJoinSwapGroupSGIX',
|
|
942
|
+
'glXMakeCurrentReadSGI',
|
|
943
|
+
'glXQueryChannelDeltasSGIX',
|
|
944
|
+
'glXQueryChannelRectSGIX',
|
|
945
|
+
'glXQueryContextInfoEXT',
|
|
946
|
+
'glXQueryFrameCountNV',
|
|
947
|
+
'glXQueryGLXPbufferSGIX',
|
|
948
|
+
'glXQueryHyperpipeAttribSGIX',
|
|
949
|
+
'glXQueryHyperpipeBestAttribSGIX',
|
|
950
|
+
'glXQueryHyperpipeConfigSGIX',
|
|
951
|
+
'glXQueryHyperpipeNetworkSGIX',
|
|
952
|
+
'glXQueryMaxSwapBarriersSGIX',
|
|
953
|
+
'glXQueryMaxSwapGroupsNV',
|
|
954
|
+
'glXQuerySwapGroupNV',
|
|
955
|
+
'glXReleaseBuffersMESA',
|
|
956
|
+
'glXReleaseTextImageEXT',
|
|
957
|
+
'glXReleaseVideoDeviceNV',
|
|
958
|
+
'glXReleaseVideoImageNV',
|
|
959
|
+
'glXResetFrameCountNV',
|
|
960
|
+
'glXSelectEventSGIX',
|
|
961
|
+
'glXSendPbufferToVideoNV',
|
|
962
|
+
'glXSet3DfxModeMESA',
|
|
963
|
+
'glXSwapBuffersMscOML',
|
|
964
|
+
'glXSwapIntervalSGI',
|
|
965
|
+
'glXWaitForMscOML',
|
|
966
|
+
'glXWaitForSbcOML',
|
|
967
|
+
'glXWaitVideoSyncSGI',
|
|
968
|
+
]
|
|
788
969
|
# END GENERATED CONTENT (do not edit above this line)
|
|
789
970
|
|
|
790
971
|
|