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/libs/x11/xrandr.py
DELETED
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
import warnings
|
|
2
|
-
from ctypes import c_ulong, c_int, POINTER, Structure, c_char_p, c_uint, c_ushort
|
|
3
|
-
|
|
4
|
-
import pyglet
|
|
5
|
-
from pyglet.libs.x11.xlib import (
|
|
6
|
-
Time,
|
|
7
|
-
Window,
|
|
8
|
-
Display,
|
|
9
|
-
XCloseDisplay,
|
|
10
|
-
XDefaultRootWindow,
|
|
11
|
-
XOpenDisplay,
|
|
12
|
-
)
|
|
13
|
-
|
|
14
|
-
lib = None
|
|
15
|
-
try:
|
|
16
|
-
lib = pyglet.lib.load_library("Xrandr")
|
|
17
|
-
except ImportError:
|
|
18
|
-
if pyglet.options.debug_lib:
|
|
19
|
-
warnings.warn("Xrandr could not be loaded.")
|
|
20
|
-
raise ImportError
|
|
21
|
-
|
|
22
|
-
RRCrtc = c_ulong # typedef XID
|
|
23
|
-
RROutput = c_ulong # typedef XID
|
|
24
|
-
RRMode = c_ulong # typedef XID
|
|
25
|
-
Connection = c_ushort # Connection in Xrandr.h
|
|
26
|
-
SubpixelOrder = c_ushort # SubpixelOrder in Xrandr.h
|
|
27
|
-
XRRModeFlags = c_ulong
|
|
28
|
-
|
|
29
|
-
class XRRModeInfo(Structure):
|
|
30
|
-
_fields_ = [
|
|
31
|
-
("id", RRMode), # mode ID
|
|
32
|
-
("width", c_uint), # horizontal resolution
|
|
33
|
-
("height", c_uint), # vertical resolution
|
|
34
|
-
("dotClock", c_ulong), # pixel clock (in Hz)
|
|
35
|
-
("hSyncStart", c_uint),
|
|
36
|
-
("hSyncEnd", c_uint),
|
|
37
|
-
("hTotal", c_uint),
|
|
38
|
-
("hSkew", c_uint),
|
|
39
|
-
("vSyncStart", c_uint),
|
|
40
|
-
("vSyncEnd", c_uint),
|
|
41
|
-
("vTotal", c_uint),
|
|
42
|
-
("name", c_char_p),
|
|
43
|
-
("nameLength", c_uint),
|
|
44
|
-
("modeFlags", XRRModeFlags),
|
|
45
|
-
]
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
class XRRScreenResources(Structure):
|
|
49
|
-
_fields_ = [
|
|
50
|
-
("timestamp", Time),
|
|
51
|
-
("configTimestamp", Time),
|
|
52
|
-
("ncrtc", c_int),
|
|
53
|
-
("crtcs", POINTER(RRCrtc)),
|
|
54
|
-
("noutput", c_int),
|
|
55
|
-
("outputs", POINTER(RROutput)),
|
|
56
|
-
("nmode", c_int),
|
|
57
|
-
("modes", POINTER(XRRModeInfo)),
|
|
58
|
-
]
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
class XRROutputInfo(Structure):
|
|
62
|
-
_fields_ = [
|
|
63
|
-
("timestamp", Time),
|
|
64
|
-
("crtc", RRCrtc),
|
|
65
|
-
("name", c_char_p),
|
|
66
|
-
("nameLen", c_int),
|
|
67
|
-
("mm_width", c_ulong),
|
|
68
|
-
("mm_height", c_ulong),
|
|
69
|
-
("connection", Connection),
|
|
70
|
-
("subpixel_order", SubpixelOrder),
|
|
71
|
-
("ncrtc", c_int),
|
|
72
|
-
("crtcs", POINTER(RRCrtc)),
|
|
73
|
-
("nclone", c_int),
|
|
74
|
-
("clones", POINTER(RROutput)),
|
|
75
|
-
("nmode", c_int),
|
|
76
|
-
("npreferred", c_int),
|
|
77
|
-
("modes", POINTER(RRMode)),
|
|
78
|
-
]
|
|
79
|
-
|
|
80
|
-
class XRRCrtcInfo(Structure):
|
|
81
|
-
_fields_ = [
|
|
82
|
-
("timestamp", Time),
|
|
83
|
-
("x", c_int),
|
|
84
|
-
("y", c_int),
|
|
85
|
-
("width", c_uint),
|
|
86
|
-
("height", c_uint),
|
|
87
|
-
("mode", RRMode),
|
|
88
|
-
("rotation", c_int),
|
|
89
|
-
("noutput", c_int),
|
|
90
|
-
("outputs", POINTER(RROutput)),
|
|
91
|
-
("rotations", c_ushort),
|
|
92
|
-
("npossible", c_int),
|
|
93
|
-
("possible", POINTER(RROutput)),
|
|
94
|
-
]
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
if lib:
|
|
98
|
-
XRRQueryVersion = lib.XRRQueryVersion
|
|
99
|
-
XRRQueryVersion.argtypes = [POINTER(Display), POINTER(c_int), POINTER(c_int)]
|
|
100
|
-
XRRQueryVersion.restype = c_int
|
|
101
|
-
|
|
102
|
-
XRRGetScreenResources = lib.XRRGetScreenResources
|
|
103
|
-
XRRGetScreenResources.argtypes = [POINTER(Display), Window]
|
|
104
|
-
XRRGetScreenResources.restype = POINTER(XRRScreenResources)
|
|
105
|
-
|
|
106
|
-
XRRGetOutputPrimary = lib.XRRGetOutputPrimary
|
|
107
|
-
XRRGetOutputPrimary.argtypes = [POINTER(Display), Window]
|
|
108
|
-
XRRGetOutputPrimary.restype = RROutput
|
|
109
|
-
|
|
110
|
-
XRRGetScreenResourcesCurrent = lib.XRRGetScreenResourcesCurrent
|
|
111
|
-
XRRGetScreenResourcesCurrent.argtypes = [POINTER(Display), Window]
|
|
112
|
-
XRRGetScreenResourcesCurrent.restype = POINTER(XRRScreenResources)
|
|
113
|
-
|
|
114
|
-
XRRFreeScreenResources = lib.XRRFreeScreenResources
|
|
115
|
-
XRRFreeScreenResources.argtypes = [POINTER(XRRScreenResources)]
|
|
116
|
-
XRRFreeScreenResources.restype = None
|
|
117
|
-
|
|
118
|
-
XRRGetOutputInfo = lib.XRRGetOutputInfo
|
|
119
|
-
XRRGetOutputInfo.argtypes = [POINTER(Display), POINTER(XRRScreenResources), RROutput]
|
|
120
|
-
XRRGetOutputInfo.restype = POINTER(XRROutputInfo)
|
|
121
|
-
|
|
122
|
-
XRRFreeOutputInfo = lib.XRRFreeOutputInfo
|
|
123
|
-
XRRFreeOutputInfo.argtypes = [POINTER(XRROutputInfo)]
|
|
124
|
-
XRRFreeOutputInfo.restype = None
|
|
125
|
-
|
|
126
|
-
XRRGetCrtcInfo = lib.XRRGetCrtcInfo
|
|
127
|
-
XRRGetCrtcInfo.argtypes = [POINTER(Display), POINTER(XRRScreenResources), RRCrtc]
|
|
128
|
-
XRRGetCrtcInfo.restype = POINTER(XRRCrtcInfo)
|
|
129
|
-
|
|
130
|
-
XRRSetCrtcConfig = lib.XRRSetCrtcConfig
|
|
131
|
-
XRRSetCrtcConfig.argtypes = argtypes = [POINTER(Display), POINTER(XRRScreenResources), RRCrtc, Time, c_int, c_int, RRMode, c_int, POINTER(RROutput), c_int]
|
|
132
|
-
XRRSetCrtcConfig.restype = c_int
|
|
133
|
-
|
|
134
|
-
XRRFreeCrtcInfo = lib.XRRFreeCrtcInfo
|
|
135
|
-
XRRFreeCrtcInfo.argtypes = [POINTER(XRRCrtcInfo)]
|
|
136
|
-
XRRFreeCrtcInfo.restype = None
|
|
137
|
-
|
|
138
|
-
def list_connected_outputs():
|
|
139
|
-
dpy = XOpenDisplay(None)
|
|
140
|
-
if not dpy:
|
|
141
|
-
raise RuntimeError("Cannot open DISPLAY")
|
|
142
|
-
|
|
143
|
-
root = XDefaultRootWindow(dpy)
|
|
144
|
-
res_p = XRRGetScreenResources(dpy, root)
|
|
145
|
-
if not res_p:
|
|
146
|
-
XCloseDisplay(dpy)
|
|
147
|
-
raise RuntimeError("Failed to get screen resources")
|
|
148
|
-
|
|
149
|
-
res = res_p.contents
|
|
150
|
-
outputs = []
|
|
151
|
-
for i in range(res.noutput):
|
|
152
|
-
out_id = res.outputs[i]
|
|
153
|
-
info_p = XRRGetOutputInfo(dpy, res_p, out_id)
|
|
154
|
-
if info_p:
|
|
155
|
-
info = info_p.contents
|
|
156
|
-
if info.connection == 0: # Connected.
|
|
157
|
-
outputs.append(info.name.decode())
|
|
158
|
-
XRRFreeOutputInfo(info_p)
|
|
159
|
-
|
|
160
|
-
XRRFreeScreenResources(res_p)
|
|
161
|
-
XCloseDisplay(dpy)
|
|
162
|
-
return outputs
|
|
163
|
-
|
|
164
|
-
if __name__ == "__main__":
|
|
165
|
-
for name in list_connected_outputs():
|
|
166
|
-
print(name)
|
pyglet-2.1.13.dist-info/RECORD
DELETED
|
@@ -1,234 +0,0 @@
|
|
|
1
|
-
pyglet/__init__.py,sha256=zUxv--HVC1haqqlM68yMJDA36TPqnn2rwq6uHWPCa7c,21155
|
|
2
|
-
pyglet/__init__.pyi,sha256=g-eSsTUa4WDTqTULiN7cRqagvW58NGCPLj9sabXRFjo,2005
|
|
3
|
-
pyglet/clock.py,sha256=ZiYHckYRIUKuN1XmywQc3Dastd7O40Lw2XeMjC3iMtk,21892
|
|
4
|
-
pyglet/customtypes.py,sha256=e9AB-8WPPhhZXqfDEf4r2Lv0vAQUBjwig5EBejBDz0k,608
|
|
5
|
-
pyglet/event.py,sha256=XF3NPI7ilwUgK72Zxe7TBOAWqEG1sEqbQAJ7uKn_v7Y,19209
|
|
6
|
-
pyglet/info.py,sha256=pDfF59S5uuo_QouRG3I-0j5WVrwxpVYH8EzH2a0qx_8,5835
|
|
7
|
-
pyglet/lib.py,sha256=Mj1W_KDmUQXMg1iPLrM0pIIHDyWPO38J6qvoU_hXKjc,12013
|
|
8
|
-
pyglet/math.py,sha256=lMCspxzd_pOeLQev5HAA92v8nYFPfGjfK-mbO6iHK3E,56117
|
|
9
|
-
pyglet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
pyglet/resource.py,sha256=EknGIAxDuc8prrGd5faOM4MNPT2q6NN4r3KQlrRg2dM,29374
|
|
11
|
-
pyglet/shapes.py,sha256=itBnLMIiZoavXFODGcfGWAdFToJoM6-bjOe_jeaB0kg,98692
|
|
12
|
-
pyglet/sprite.py,sha256=DWMiCG1wO5ySEe_Wn7pPzgCOWiG1NceodtViD4nBbLg,28701
|
|
13
|
-
pyglet/util.py,sha256=OPu-Lw5Rxu1NMcsXBSM3Y-_3r2J09OjmdfUUAqSWvfg,8647
|
|
14
|
-
pyglet/app/__init__.py,sha256=AzV-eZLCSGJgqx8GEuOrOrJUtcUBBLHbw5oyyyni7e0,3043
|
|
15
|
-
pyglet/app/base.py,sha256=-rs9nvLoizNvbQfKQ0OGAnbDShpjnt6pAW0EFHLY9c4,11596
|
|
16
|
-
pyglet/app/cocoa.py,sha256=NUy06NCLppmM9F0NX7kmKEL5sMMeq-Ia6f00lCAIxiE,10850
|
|
17
|
-
pyglet/app/win32.py,sha256=252RfeIBB9TtytMf1bd6Zc1FDF0W3bukCJAlqfP4ioM,4340
|
|
18
|
-
pyglet/app/xlib.py,sha256=7gBureT60LHaROH9ah1jC62FwqsOZqNESPu1HpilLAs,2524
|
|
19
|
-
pyglet/display/__init__.py,sha256=qz5Zy1S8XfapRys08uapOZK4N8Iian68yPCla505dcg,3313
|
|
20
|
-
pyglet/display/__init__.pyi,sha256=JRd3vFMahd1YC3r-uPgr99V9yAmiut1QZXKMFmstg5o,65
|
|
21
|
-
pyglet/display/base.py,sha256=o8TYTl1J4zdy4pRJy9HEz4sOLqmdVMhNRFcrTJKP4U8,10142
|
|
22
|
-
pyglet/display/cocoa.py,sha256=mW3Npw4PjeH29xnAuww6pRToO3Zh4v_xWTEVKubqIAA,6391
|
|
23
|
-
pyglet/display/headless.py,sha256=LwS0dHee0Y6oxPHidMvDVhIFqCDoBwNI0eQdXQgvtpE,2491
|
|
24
|
-
pyglet/display/win32.py,sha256=JJwnVkxrgZQJZh0cjimL0Z8h8AEL8BLznDQ7QYAPYRg,9510
|
|
25
|
-
pyglet/display/xlib.py,sha256=6_SjJuqgDesW_jqwrQj7fjX3Csm8bVItnfBUxXds6BY,17264
|
|
26
|
-
pyglet/display/xlib_vidmoderestore.py,sha256=fkcVbCvwQ65UDvAxaIZb3JV_bAWONVgw7l-6UJhEXTs,5663
|
|
27
|
-
pyglet/experimental/README.md,sha256=bipJa3Y-kpEu9Uf_HNZJR00AAbfpUyGAKGEFdRY8YsI,222
|
|
28
|
-
pyglet/experimental/geoshader_sprite.py,sha256=emDi61iMeGsQLKoXtvbKOSRDrJJX_TRkZQdMcUp0mNU,24652
|
|
29
|
-
pyglet/experimental/hidraw.py,sha256=NDhvvgOqE4CuEL9T1EqtzMR9ljOSdRIepHkEnG_Tazo,4952
|
|
30
|
-
pyglet/experimental/jobs.py,sha256=dpc-HhuRgKJo48zvW0BPsjAeLSlGkwxx9nK8hgQKdYw,4459
|
|
31
|
-
pyglet/experimental/multitexture_sprite.py,sha256=rOmo8Kmuq_aUNcKosoQF6Tj5x33z4xnzfcmrNcanWvw,20871
|
|
32
|
-
pyglet/experimental/net.py,sha256=wYRCuDb2YEKzkGKFhG25Fwe8PXU0aJp5IZ5JdaSyUjE,7680
|
|
33
|
-
pyglet/experimental/particles.py,sha256=Rt0QxNvQ8uodpf2zwOHVZSBx2jlwjxwYGtLwuaI0m8A,14538
|
|
34
|
-
pyglet/extlibs/__init__.py,sha256=rbqvpywhuc1ZNYmTQ_mHoL07CrYIlNbKhwyhH7KygUo,128
|
|
35
|
-
pyglet/extlibs/earcut.py,sha256=uww7nwDtc0moYR-3wkeOpYNUJYCzov35h3vQQ0XnL-0,19281
|
|
36
|
-
pyglet/extlibs/png.py,sha256=u8AAGIZPWdGxlrBaOQYVBwpjiay3CKJ1AMrKrwimDHE,81404
|
|
37
|
-
pyglet/font/__init__.py,sha256=KSCDEOq5cKHBeTgKMeasAwxlcPqgqJmuepk938oRtcQ,8997
|
|
38
|
-
pyglet/font/base.py,sha256=a5x7ifiZ_qggZNAOvQPLHDbrmRSTT8dFr6uxseczgLo,18138
|
|
39
|
-
pyglet/font/fontconfig.py,sha256=ZyqI-HJ2uKwo-wvOXz2Tgf9VDT8JplzRvlu4nww48DM,14422
|
|
40
|
-
pyglet/font/freetype.py,sha256=zQd20rQTCFC1cCD2H4bCZWTLH8DMDeoYjhgW4DcCG7k,20162
|
|
41
|
-
pyglet/font/freetype_lib.py,sha256=SiSsHv5J1zVtCNWYNqnXDT4iGPJsBzrxVXUASEhAuJY,21489
|
|
42
|
-
pyglet/font/quartz.py,sha256=3MYuPH_PWaGY4I2Zp_rFZl2g5GwFxyisMTMdGF1oDPs,25849
|
|
43
|
-
pyglet/font/ttf.py,sha256=xrTxY02uGcc3s9xG60iu4x4HzDfxuTwAyT8KFfJ8GS0,24225
|
|
44
|
-
pyglet/font/user.py,sha256=0Aizb4EFq--kgxVn9K-uznKxzDSBBgLC8Sj3hC4f-V0,12429
|
|
45
|
-
pyglet/font/win32.py,sha256=lZpmzFgZJvit2PK15SwpFtP__M_qgrc-laEna7pQP48,16460
|
|
46
|
-
pyglet/font/dwrite/__init__.py,sha256=Qz371CtDjeWZ4h0M8gTBPKCpAF89nLdf6vgpNTWDQS8,53777
|
|
47
|
-
pyglet/font/dwrite/d2d1_lib.py,sha256=dqLJo33Xt5WiUWaXnrTPQKGQFclzcMV8ysRNtEHGrqY,19563
|
|
48
|
-
pyglet/font/dwrite/d2d1_types_lib.py,sha256=-vzx6qyHfdFQ6n8Sf38LxYRNWFDnz_zJR_AvnxFPEDU,1201
|
|
49
|
-
pyglet/font/dwrite/dwrite_lib.py,sha256=Rbq9020ERYO9ZpVWrCGK3prXev61lo_-6JQ5RM69da8,51437
|
|
50
|
-
pyglet/font/harfbuzz/__init__.py,sha256=7n-PkTpCjwdJfXTyrroFNyBwt3axpMGXMVqX0ipUnHU,9742
|
|
51
|
-
pyglet/font/harfbuzz/harfbuzz_lib.py,sha256=en7JiJRJ2EkuiVekSoKXi9YZ4p1ptQsVs2RWYMO02UA,6761
|
|
52
|
-
pyglet/gl/__init__.py,sha256=nbbjbSbiVS7fwF67e4AspOp7HsplljZ02njQJ0V_yHc,6039
|
|
53
|
-
pyglet/gl/agl.py,sha256=7xsnp56xtHM0Wb08Y4oin8zI9A-VMpdkqD0s7ozA990,26720
|
|
54
|
-
pyglet/gl/base.py,sha256=i_Rl1OJ8Mb0Eim23QTZz9i_lMZYtK4DstbQDmySztug,18248
|
|
55
|
-
pyglet/gl/cocoa.py,sha256=fJ0jy7nh_ZsbeKyepKa8qfCKyILh1U2XhsY0lL3bjPM,11304
|
|
56
|
-
pyglet/gl/gl.py,sha256=FBBC1aOMEGLSwLYYbGeN7MoSq8QAjypFvbzgA1yiLU0,212739
|
|
57
|
-
pyglet/gl/gl.pyi,sha256=BzOwRCF-IUQ3JT1DZzmhNkFnPp3x0b3FowwdiTLw1w4,136690
|
|
58
|
-
pyglet/gl/gl_compat.py,sha256=RLGyahf73GV4hKz2H85pBUILy2XSyvB3A8WYMu2qqy4,277409
|
|
59
|
-
pyglet/gl/gl_compat.pyi,sha256=7jEPonR2plG8QSrPhCwOIw7tc59SX8sd7HUNTnTiE6k,174795
|
|
60
|
-
pyglet/gl/gl_info.py,sha256=bTzMS5NVaibRAN1GbjfjcH3EYDrE3NWIgLuA8xVh_S8,6410
|
|
61
|
-
pyglet/gl/glx.py,sha256=-Wzb75Jq3umLw6fOB8p8Pf3fUQFUfR8_o6_UK5ZgPIQ,29144
|
|
62
|
-
pyglet/gl/glx_info.py,sha256=h7Dzo7qcRzujCKf_kmpNoSjfCCP7FiCnEelcUXu_3hw,4154
|
|
63
|
-
pyglet/gl/glxext_arb.py,sha256=frVRl26TuiNcR-EFwjvqkdr812FmxjNMPzCGiaw8mBQ,50590
|
|
64
|
-
pyglet/gl/glxext_mesa.py,sha256=OaLUCVkc7Dxzc53sy8xzBcD7CKYdjZyudWB4cEy5g-k,265
|
|
65
|
-
pyglet/gl/glxext_nv.py,sha256=jOnOT9gmV1IZe5j50pV9jM4cnU2Ffri7WX7XsiBIHX4,41416
|
|
66
|
-
pyglet/gl/headless.py,sha256=wkDBiDs7koI2eVpgQ_zsiCpplGWXH7rVLjGMiIeqV24,6089
|
|
67
|
-
pyglet/gl/lib.py,sha256=b18UahrY9F5K8kIK3ofXutxPrOEypvDmqi_AW9Js6ag,3804
|
|
68
|
-
pyglet/gl/lib_agl.py,sha256=h32bfYlGaNfu1j0vcPrtHi-Oo4W0YULP4nkztKj9hj8,1203
|
|
69
|
-
pyglet/gl/lib_glx.py,sha256=Jet6F--JuXDqcStfs89QwP4qmITSzdb5U7O-SgRo3T8,1894
|
|
70
|
-
pyglet/gl/lib_wgl.py,sha256=OOj8HeAjLrRTBhFCoyU8bI8AT8CeFIUAjFEpoM8XFLA,3411
|
|
71
|
-
pyglet/gl/wgl.py,sha256=TfoVJPli0KkvWc9tkv2qFQP1wmfFD2v2oLTYD5EZpNw,8556
|
|
72
|
-
pyglet/gl/wgl_info.py,sha256=gFOL9Y10crsUgam-pJSCM3Hq3fHNpQHGdR6goj92thM,1082
|
|
73
|
-
pyglet/gl/wglext_arb.py,sha256=j87We_bcA5qibuGZTYOed9AIi4_Np9cpEL6lXZRpqgU,71614
|
|
74
|
-
pyglet/gl/wglext_nv.py,sha256=lfIS6b7y6pgvoOoc0ykdp8-UV7xwdViFihpdTVSo2z8,70974
|
|
75
|
-
pyglet/gl/win32.py,sha256=8nfLL2JVXD8Tt1nHNmM-4nQ-4OQ029Etvt4c2xwz6AI,10464
|
|
76
|
-
pyglet/gl/xlib.py,sha256=q6BNLJ9lujt3P-0xh3CAvJHCFERAuLSUnXOgeS4jZhY,11357
|
|
77
|
-
pyglet/graphics/__init__.py,sha256=O4O7fCQBI7qPReI8tUwLwArJHTWcoE1c_SotlHyUb2A,27940
|
|
78
|
-
pyglet/graphics/allocation.py,sha256=0MTwkK7-00UDs2xl6Te7cf0ljC2mmsOQMbx0zKZCJOU,12430
|
|
79
|
-
pyglet/graphics/instance.py,sha256=pzIaxO0EZCeoQDMR-qzjo4ahwfcbt3dDZm9UinYpZo0,2202
|
|
80
|
-
pyglet/graphics/shader.py,sha256=O7H_Nu6CgMNCqKK3UUS4MQs9hJAO-r65gH-qALE-ftI,66604
|
|
81
|
-
pyglet/graphics/vertexarray.py,sha256=BWJFvP79JHpKwY91mrkjjhlbK3g87nIpMbCsc4FCcEg,1371
|
|
82
|
-
pyglet/graphics/vertexbuffer.py,sha256=SbtT2cNSXwPMlQRGf2DxTxZCEyj0AjEEDLLdho-ojG8,15284
|
|
83
|
-
pyglet/graphics/vertexdomain.py,sha256=Y4tAi26ABf5kLBGJ0QDvTVeWEL2vSN4HuIeS5svZjsg,32764
|
|
84
|
-
pyglet/gui/__init__.py,sha256=vW9yvUBoKz6nG-VpyIYwHMmq_y_2LWAZvFW9LYQALog,77
|
|
85
|
-
pyglet/gui/frame.py,sha256=R9QXswxNAC1tUqB7OA2tt6jATqjghgjRYeZ5WyHoN1A,8413
|
|
86
|
-
pyglet/gui/ninepatch.py,sha256=f3iOQr6GOhoCUCIcwltsqrEILZz-BhKwnGr9rcsfohM,11376
|
|
87
|
-
pyglet/gui/widgets.py,sha256=WegDh_TadylnchR9BgIS2ZzxfjpjwN1nWIzxrYw6a6o,20704
|
|
88
|
-
pyglet/image/__init__.py,sha256=1Axruxq_hul8RXY3Pxp5_JNhuVxbtJdivGfMKPdku0E,83852
|
|
89
|
-
pyglet/image/animation.py,sha256=ThMlyHFlqQkCRh7WdlCRy-uhMN62rFiME_qSxBUaEB4,5564
|
|
90
|
-
pyglet/image/atlas.py,sha256=svY5NWVVAjIhtGEeAJS_4PcLtg8QctPIBrpa_4C69KM,9913
|
|
91
|
-
pyglet/image/buffer.py,sha256=hA9QNr08euppJ5Kb6ibMLgpORhHORic6uwFTd26fR2U,10823
|
|
92
|
-
pyglet/image/codecs/__init__.py,sha256=NXBFOb_v_txapXwZcp_x3vtf---ShInVtdobsfULGcE,6559
|
|
93
|
-
pyglet/image/codecs/bmp.py,sha256=hYmxGiwgqcJrJpdFEHEt8NvLzRMbH-V8VFlXPlJoP88,10638
|
|
94
|
-
pyglet/image/codecs/dds.py,sha256=SwqVrBp0-5Ku9cI-C-p3taJ3FcLWYH_RdLM06QSuBIc,5648
|
|
95
|
-
pyglet/image/codecs/gdiplus.py,sha256=s1RGa3u2EMSMQROTh_KntRHOxS8aVVVVseAyYweBj-s,11407
|
|
96
|
-
pyglet/image/codecs/gdkpixbuf2.py,sha256=xIGV5FA3804UceYSVyUlAm9xx2ZWk3vlw0uk4CNWdyw,8939
|
|
97
|
-
pyglet/image/codecs/gif.py,sha256=h8JZhWo5uJFhavLVQ2CI8jfb3u4wuQca4RPawLa6F2g,3571
|
|
98
|
-
pyglet/image/codecs/pil.py,sha256=wlw_7IF_QOceAPRsTdK8NI-552gJe5uwd2IeNlG5ahg,2592
|
|
99
|
-
pyglet/image/codecs/png.py,sha256=TeUXkovf1s-G0BXwD-8qxpTP9xJCgD0hZNfldv0yBVA,2081
|
|
100
|
-
pyglet/image/codecs/quartz.py,sha256=Nl41ool5MDnp6MDGQjWotvGNYIfobCq4UPnGMjyL0XU,4708
|
|
101
|
-
pyglet/image/codecs/s3tc.py,sha256=XsBcl8tOli61BVEoukb-9Ydw5aPSyydlJXWDC__W84Y,12392
|
|
102
|
-
pyglet/image/codecs/wic.py,sha256=tPZssIDdkoiJedvM99nHB0ON1KH_n2JF5Vx7pfRbEjs,11156
|
|
103
|
-
pyglet/image/codecs/wincodec_lib.py,sha256=G2FSx9j9gMXpFOGUMt0a06C_DBv4LEaoAg103PW2Vx8,14602
|
|
104
|
-
pyglet/input/__init__.py,sha256=AGo55xX3yMr8TmeNXNFFwAY7WXrsA1rV6GgDRV-0faU,6417
|
|
105
|
-
pyglet/input/base.py,sha256=QO9c_cMo-qPT5fTcxR4GGTxHbwx_nX8_7rSDDJ62YLs,39326
|
|
106
|
-
pyglet/input/controller.py,sha256=kkLXJHyVePSlwagV9D7MN2QPjX9qjSk_avPI6G5Zud0,5548
|
|
107
|
-
pyglet/input/controller_db.py,sha256=KFgHVcwDKO6nC6qw_JDT-fE7BsgsYh76aKupc6fOKJY,196312
|
|
108
|
-
pyglet/input/linux/__init__.py,sha256=fd8rAts7soFEND4l5rUtLmEwK4rRpfFZ7Ibj9EOcrrA,391
|
|
109
|
-
pyglet/input/linux/evdev.py,sha256=a8DowSKwqYW6QW3ZwMv0_nI_RQ0tLfTudaPy_qfvRBk,21154
|
|
110
|
-
pyglet/input/linux/evdev_constants.py,sha256=647CtG6a8782mmfdr20yzwC4JeuW702emszR_WSuj44,9816
|
|
111
|
-
pyglet/input/linux/x11_xinput.py,sha256=eezRkEM_Xl8MJcvHpGXUjliz4E-DBVEUNNooWr-LT_k,10939
|
|
112
|
-
pyglet/input/linux/x11_xinput_tablet.py,sha256=wnLrTQLwtAOrOPac3BJPXqBP_nygwRJtnHmdzJoCFjE,2959
|
|
113
|
-
pyglet/input/macos/__init__.py,sha256=5VQqkzxDR6gZfF21vxEG-GKts-BRRpETxJaK7OYiBoo,348
|
|
114
|
-
pyglet/input/macos/darwin_hid.py,sha256=VnoqvL26tZtU329yegtHUCnEM2zqmPbA2UKaOaSDWds,25549
|
|
115
|
-
pyglet/input/win32/__init__.py,sha256=xYVWmf1_510qFJyPDXIhp6xnULP_B4qpLbFGSQrjX3g,4220
|
|
116
|
-
pyglet/input/win32/directinput.py,sha256=lU70it9a0xqLwEh21Dll0u6mnFmf-2MuEUIV87y8eMA,16974
|
|
117
|
-
pyglet/input/win32/wintab.py,sha256=ST0pYMMTJ0feQHPQqmgkjMjhS1AaTLbiBA2KK4FmXJ8,14430
|
|
118
|
-
pyglet/input/win32/xinput.py,sha256=BRhGjo2l4fhJTQr_dMu1uD246sQD8gGjlwK1Q_Jc5hk,21701
|
|
119
|
-
pyglet/libs/__init__.py,sha256=GQaW5m1MjFBnoUBcfY1AfHY1C1MiXpbagsS8FVUT7Ck,584
|
|
120
|
-
pyglet/libs/ioctl.py,sha256=bQu9hpqYKMr0m0lXajlmSPGf4w72dGz1YLDOrq2uUz8,3700
|
|
121
|
-
pyglet/libs/darwin/__init__.py,sha256=Kx8qOx_xjgLZj9pf9qDj9-tZiWbzKfSmnmIeMaAiVnU,23
|
|
122
|
-
pyglet/libs/darwin/coreaudio.py,sha256=H0kpmJXPxSUHST56yxucV4iPhYd5SXduJjQ5dRQsNX0,8991
|
|
123
|
-
pyglet/libs/darwin/quartzkey.py,sha256=FhwLyotAdlhJIvmGX1JNPkB0kxPhedRb-9NeRh_HTwg,6051
|
|
124
|
-
pyglet/libs/darwin/cocoapy/__init__.py,sha256=LvkMAtOc0SGfyitALT9FdCTUvZ6dNzcFF7kDyrhu6GY,1798
|
|
125
|
-
pyglet/libs/darwin/cocoapy/cocoalibs.py,sha256=GLr7LRQTxQq3RCGeHlSplPmq3tGjUVsr-kS2fC9Ax00,26062
|
|
126
|
-
pyglet/libs/darwin/cocoapy/cocoatypes.py,sha256=UNymqQdVNrq7T6jIupCgRgoxgm51hhQW-R42Y-tRP00,2629
|
|
127
|
-
pyglet/libs/darwin/cocoapy/runtime.py,sha256=GgG2epgsCpEAA2hFjZKZ_aX-wxRFes8DguCZ3-waRzU,66265
|
|
128
|
-
pyglet/libs/egl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
-
pyglet/libs/egl/egl.py,sha256=sfSx2puVsMJDIY_xH9EbadsG3cCpsNUN7V2UgebUzvk,29920
|
|
130
|
-
pyglet/libs/egl/eglext.py,sha256=NPqhL-GQK1Y5cHLwXSNpyWEqWhSgqyxc3vgk374-D0s,859
|
|
131
|
-
pyglet/libs/egl/lib.py,sha256=IdQfLfRPbTckgNBEIUumdmEQ6iSWiy1nhTnkTTzaZ6M,893
|
|
132
|
-
pyglet/libs/wayland/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
|
-
pyglet/libs/wayland/gbm.py,sha256=iv6IKaB_U9t3s8njo0zy29rksbFPKEYlmGjF7wHjYr0,13388
|
|
134
|
-
pyglet/libs/wayland/xkbcommon.py,sha256=GCQ2mONKCi8MPwNfeL8t5JdszEoYhvEqrPUGDFE30xQ,20657
|
|
135
|
-
pyglet/libs/win32/__init__.py,sha256=oPvQ9y9V-9EZE39cLGNowgrfpkNdOi1gecgLNH9C4RI,15127
|
|
136
|
-
pyglet/libs/win32/com.py,sha256=E4lzOzkmPRbV0F6Hj1MH_PQK46N_-USaOjPJbjgrXpM,17607
|
|
137
|
-
pyglet/libs/win32/constants.py,sha256=gL787XYVx2d63ue5dVu1HXCONfZc64yUiRFihpD3P9M,121484
|
|
138
|
-
pyglet/libs/win32/context_managers.py,sha256=pNCpws8Xc-HP19jC42gtWSdC9m1s6sP8H-0mFyiEz0A,1433
|
|
139
|
-
pyglet/libs/win32/dinput.py,sha256=V6ZttG3OpTL4gbEJqq6RHiqRFxORzjoxzDjrOGNiZYk,10849
|
|
140
|
-
pyglet/libs/win32/libwintab.py,sha256=Qw2UmNG2-rZov483o16qjFtywwMGBJbDbIuKl_NFLe8,10901
|
|
141
|
-
pyglet/libs/win32/types.py,sha256=WFymMQjljgoPaLaDLj-wL_vFZ-clRRJ7XGf7Rgwj0gE,18485
|
|
142
|
-
pyglet/libs/win32/winkey.py,sha256=0yKZTOyrGirM3oAIhJRUgiKwDgQ_XF0_k9KRXf3MJaQ,4667
|
|
143
|
-
pyglet/libs/x11/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
144
|
-
pyglet/libs/x11/cursorfont.py,sha256=31GFWHJWnNrmaiF6uvjUdLSM7gBL9DL0kjnfxjM8jAg,1451
|
|
145
|
-
pyglet/libs/x11/xf86vmode.py,sha256=YkdY2fG2K_TsF7nKuxD6RYALXNcsJD6dhw7Q-C51YX4,13531
|
|
146
|
-
pyglet/libs/x11/xinerama.py,sha256=T015JX3e4pqV_zcShwTKOMic9G7A9rpCZacF0J6v-EQ,2182
|
|
147
|
-
pyglet/libs/x11/xinput.py,sha256=RE0aMlSl4uJsWC2lfyljfiWX-LMrXHnIVjX2rbkWwsc,54556
|
|
148
|
-
pyglet/libs/x11/xlib.py,sha256=JRcqjnIyA4K8nnC2U3_sD9Rrc9r-HS_MVkBLkfOqQxY,188808
|
|
149
|
-
pyglet/libs/x11/xrandr.py,sha256=ogsIZ0EAHAS-u4qaegTJKeI9_AJed6qfIiW8S4GIL3I,5407
|
|
150
|
-
pyglet/libs/x11/xrender.py,sha256=-Ik-9qKu_V3ZiOG4kehvJbEVYOXsRhTHy1y0LrNL3cg,1172
|
|
151
|
-
pyglet/libs/x11/xsync.py,sha256=mUM27lMC-KhnoYT9RZkdCnZ7HWoqHdP9onvnfOxDElI,16381
|
|
152
|
-
pyglet/media/__init__.py,sha256=i7u3ZMWLslxyrEEfFdz_MQB4P0qazD_RUHA5PSxZLPE,3515
|
|
153
|
-
pyglet/media/buffered_logger.py,sha256=3B64IdPSWiQtHteT1ZbdBmd9NLB8_bDvNJ4AE6sZQ84,1025
|
|
154
|
-
pyglet/media/exceptions.py,sha256=ftERqNPFB2F05Ml3jx3t-0_SXtgNWwZO9DavsGRN8Nw,152
|
|
155
|
-
pyglet/media/instrumentation.py,sha256=omCYjxTzbnM5Z3U6viAgJOPICwbx1dEjDTVE37Y0z0w,10797
|
|
156
|
-
pyglet/media/player.py,sha256=TtAJvZ1dwqtHy-keSWk8rK3zjICrhdintT42s8uqSEE,22532
|
|
157
|
-
pyglet/media/player_worker_thread.py,sha256=88AL-pArZMCjSnjxU-nCSfUNi_GXg1u_WYdRhAyCbjk,4297
|
|
158
|
-
pyglet/media/synthesis.py,sha256=ToaL2Y9y8cIjHHjlGHxpiBZqpfpBcsYFFgtutw_N1cE,13158
|
|
159
|
-
pyglet/media/codecs/__init__.py,sha256=K7zxWvfJog9DLhRJ25diBD3pxn6u7ZwKU0T2NKuq90Q,3428
|
|
160
|
-
pyglet/media/codecs/base.py,sha256=31oNAFwU1mUcShqCBtoiQruQ1KOCt0_Ug2H8rOib5vU,20936
|
|
161
|
-
pyglet/media/codecs/coreaudio.py,sha256=pPhbUkzVNhKnhKaD2hiyuo8kkgTKA26L0WKGB742Rv8,6838
|
|
162
|
-
pyglet/media/codecs/ffmpeg.py,sha256=sfWn_Dp0lZtQmoMqGi_6qRctsQ61xG2g-xWm7J1YLio,43683
|
|
163
|
-
pyglet/media/codecs/gstreamer.py,sha256=kzg4k7aBJdIq0SubUuXc9p3dHP4gtGfP24dQcR28wOg,9250
|
|
164
|
-
pyglet/media/codecs/pyogg.py,sha256=eTUI5Kty1HpMyWsVWQeXchl03l7I0HSo3j2VJbhftE4,17728
|
|
165
|
-
pyglet/media/codecs/wave.py,sha256=zYA4z52BHE-q5Gl4YHL1ujdtC69lmkUsJ6o69OnStUY,3801
|
|
166
|
-
pyglet/media/codecs/wmf.py,sha256=CpBuhvb8U1N11sLrxAVEao_37VAHBS-yMk8ZIQaQzWQ,35263
|
|
167
|
-
pyglet/media/codecs/ffmpeg_lib/__init__.py,sha256=MzdctEH9MnPm-ML5rJRvVmpe5EEKAD-9lBsqLNztx1g,201
|
|
168
|
-
pyglet/media/codecs/ffmpeg_lib/compat.py,sha256=FPbwoEBcA3EIssDc1sastvcw0yy1erLyK62wHQ0vDJo,3498
|
|
169
|
-
pyglet/media/codecs/ffmpeg_lib/libavcodec.py,sha256=OfFCMK3KKFueje_dzav3BQw74ysalff12gHWh9Vpko0,23872
|
|
170
|
-
pyglet/media/codecs/ffmpeg_lib/libavformat.py,sha256=kSPPG1z5kixCQV2Omkv1H3MEIecjjsmIgRKrGSNtOVk,16139
|
|
171
|
-
pyglet/media/codecs/ffmpeg_lib/libavutil.py,sha256=zWKL__B-KNhMlUxtS9jNKj6m-j8G__EHYGwQGQUSMZM,10467
|
|
172
|
-
pyglet/media/codecs/ffmpeg_lib/libswresample.py,sha256=Jaa6zG6yAab9uxg1r3BVUiDhc2FM0PhswwkUKJq5szw,2420
|
|
173
|
-
pyglet/media/codecs/ffmpeg_lib/libswscale.py,sha256=qthAjgfjqTM8EDFGMJenTUC6_a5YxWBmEWg-0yjRUKE,1553
|
|
174
|
-
pyglet/media/devices/__init__.py,sha256=X6cc8vMKg_HsVCmjqzamCgvNKqXiyLrjXpz-vnVxm-A,773
|
|
175
|
-
pyglet/media/devices/base.py,sha256=n3RxJD0_yc50juY0nuZ2eGLH0xG0pyn5giMZ9_RSBO8,3218
|
|
176
|
-
pyglet/media/devices/win32.py,sha256=a1wxD90RAsOQIe1FAu9q3DHGTqElZSZk83JxFHY4M58,12481
|
|
177
|
-
pyglet/media/drivers/__init__.py,sha256=0kCu8B8-YLkGBp2_Jwu6A1QFjbm5KgmuL7aMEgQ8OGM,2463
|
|
178
|
-
pyglet/media/drivers/base.py,sha256=QIywhiWE2DHbdoKIntzBXL7JyYKHtH8JHQnNZhXgvlc,18475
|
|
179
|
-
pyglet/media/drivers/listener.py,sha256=XYKlPPWMkJ5L_IPPNo4pL0k1wSZjkapBh7dAw822llk,2438
|
|
180
|
-
pyglet/media/drivers/directsound/__init__.py,sha256=4pZuMWsqb6WFQXH8lV-5XFb03KPL9J5jY3dZ_91nJsg,251
|
|
181
|
-
pyglet/media/drivers/directsound/adaptation.py,sha256=DFn1B-PKwTnTFfzmNjL7QsoUk_1oHJKsasX3wsHNnP8,12133
|
|
182
|
-
pyglet/media/drivers/directsound/exceptions.py,sha256=DNslGA8HwhO1ees5Rd4dpH-wtSTax2UtLPEUKyev2oo,325
|
|
183
|
-
pyglet/media/drivers/directsound/interface.py,sha256=4B9jEUSBr8aconkkn-q-0x7PeUsGDP8JqehyBSVfVWs,12858
|
|
184
|
-
pyglet/media/drivers/directsound/lib_dsound.py,sha256=2jH2uV_Ps5fyjY_VRyVT6buIUEjS-6lu84H5sSoy_dc,12713
|
|
185
|
-
pyglet/media/drivers/openal/__init__.py,sha256=yuks0X4x50nYQsAYAZftgxcI1iqNflxMetSskIipnf0,324
|
|
186
|
-
pyglet/media/drivers/openal/adaptation.py,sha256=oa8KQd5YoTEipE9dxkJS6MqrpbLiNIpRy2I0RLyHxVE,9226
|
|
187
|
-
pyglet/media/drivers/openal/interface.py,sha256=XbhcfRTsj4I7b0vMJrLGF_LpjK0-ttNe-FKCA_qP0Q0,16582
|
|
188
|
-
pyglet/media/drivers/openal/lib_alc.py,sha256=bIG8WSCWvHvAu_PmQcPExq9SGLXv9JkKjE0HoBGGv7Q,10833
|
|
189
|
-
pyglet/media/drivers/openal/lib_openal.py,sha256=2Z6ulaYjgP0Gucpg9Wj71b4OA5KZJv_QQ-MjpVYb-_k,26707
|
|
190
|
-
pyglet/media/drivers/pulse/__init__.py,sha256=WrQZ3-ABfq0NxKKEFnJ9gM8i9NLWPv69F42-ZB6e9SE,244
|
|
191
|
-
pyglet/media/drivers/pulse/adaptation.py,sha256=3vyqUJy0Wu-KX1ne7J2s2UNTIeNKyk7CasDDDVFkBYA,14112
|
|
192
|
-
pyglet/media/drivers/pulse/interface.py,sha256=dUN5FCdPTKo_h3AC-qykLvMh5tnSGSsfEsKVzRH11Ec,26864
|
|
193
|
-
pyglet/media/drivers/pulse/lib_pulseaudio.py,sha256=mdIbFBykSTpTJl_E8cATE0Ec8TYx0IiHxwEoGlM7a_I,125621
|
|
194
|
-
pyglet/media/drivers/silent/__init__.py,sha256=ll3SIdXcO5oBn7PolMNKJLPU3yQXQz6KOslCZXWokR8,127
|
|
195
|
-
pyglet/media/drivers/silent/adaptation.py,sha256=HGf4h3RiFExmdMIqgHMHPIH8ffrkZeCREL1RvfOiHQo,4080
|
|
196
|
-
pyglet/media/drivers/xaudio2/__init__.py,sha256=RipwpSVIsNEqgUYYFA0TbxHEBl41pre0XB4sFRQvBg8,128
|
|
197
|
-
pyglet/media/drivers/xaudio2/adaptation.py,sha256=uV2U7Em2GGWJBtve7Pv9jUjpOYVglhIxjw53kKmMW38,12769
|
|
198
|
-
pyglet/media/drivers/xaudio2/interface.py,sha256=TQw2K5YEymz62OYb79WkreuNNS9Ot1MDvpKrnWhTe_w,25222
|
|
199
|
-
pyglet/media/drivers/xaudio2/lib_xaudio2.py,sha256=OxFN0lDf1v-4eSRMDeU98ZyrunXGUBOCYwg34rvHGfA,27869
|
|
200
|
-
pyglet/model/__init__.py,sha256=Sfq9xkgJo3EEtTHqG-6kfyPuXX6GZGzz76WzkH1tEhg,14584
|
|
201
|
-
pyglet/model/codecs/__init__.py,sha256=7ezyORi1RBfH-KAmcrfHjNxe4LSTKJDpG4BXHJ-ghwU,1450
|
|
202
|
-
pyglet/model/codecs/base.py,sha256=887X8f3ZeePihCI4GSbhjY4oqsaVP0qMtqCaMLSZd94,4380
|
|
203
|
-
pyglet/model/codecs/gltf.py,sha256=aD6eo7VdFNwpvoquDhjBoN_JL4A2GyXoDl5mQeecwyg,14109
|
|
204
|
-
pyglet/model/codecs/obj.py,sha256=3fdd-KOymJ21xzxNueDUGEmjuAJAXHyGIDdGIqCGnLE,7984
|
|
205
|
-
pyglet/text/__init__.py,sha256=J2QiN0sWu3qsNj5U2hw6kE94IK1RUuUBsKufDGnCwU8,20467
|
|
206
|
-
pyglet/text/caret.py,sha256=BQ4QdMinhNKt7lFULJw__mbVIEyZ7FABTHlcOBSdKSY,23356
|
|
207
|
-
pyglet/text/document.py,sha256=G7rRW6gZKSC_rt3N1I4Zp6nJ3rjCXr5Z9Bke1ThIojU,26468
|
|
208
|
-
pyglet/text/runlist.py,sha256=mgHXjKOenggrw930LuaQ0694grAq9VCDyWo7Jm_tnTk,13601
|
|
209
|
-
pyglet/text/formats/__init__.py,sha256=hZVwM1nciPptXpawu9GplNI_XtUpWH3-AmCZLf2m_kI,24
|
|
210
|
-
pyglet/text/formats/attributed.py,sha256=VZ9jelMyFr1LJ2M-sgE5IeQJonHBPnaf749TEDC8uqM,2937
|
|
211
|
-
pyglet/text/formats/html.py,sha256=9DE0-Q8clXzlbBxAEPLmwThaHrfBbFRHwNDeMGW86LQ,12058
|
|
212
|
-
pyglet/text/formats/plaintext.py,sha256=xsh6fMs9FQZelPUiLu_pPp-K07r4jUJw0pYRskHeZQM,515
|
|
213
|
-
pyglet/text/formats/structured.py,sha256=Zkk8uxAr1pxLe7eAtQ-4tabKjp-Ygz9a1ECecOAAsFI,11400
|
|
214
|
-
pyglet/text/layout/__init__.py,sha256=40UfnGLx-JczJqL46kLomLB1dPKXR3aqEo3aW9alJi8,6148
|
|
215
|
-
pyglet/text/layout/base.py,sha256=pdQsjolFxyhN33etjnm_Wh6Z8wzteBOsDWr1lADitcU,76033
|
|
216
|
-
pyglet/text/layout/incremental.py,sha256=sdcQEbhFIOTEbDQQWgqsORjXvpu4Rt0e5rKoHICI-Po,36120
|
|
217
|
-
pyglet/text/layout/scrolling.py,sha256=UcsEyQTnwENze0FP_nKa4sLY8XwdWV1UIRy5Pp9PU_g,9593
|
|
218
|
-
pyglet/window/__init__.py,sha256=ue4EfPpzNqjAgjrdTvP1f6WgnEsLHKfDWlk3gnXeEwE,71079
|
|
219
|
-
pyglet/window/event.py,sha256=Be4We1jfM_q5uMIqTXQjT9UFMMXE-QTo_KDV_M020ZI,4265
|
|
220
|
-
pyglet/window/key.py,sha256=Q29wUkA3stzTGGD0lTNJ-pIRsi61wrlUPuAVhB9ZKZY,9560
|
|
221
|
-
pyglet/window/mouse.py,sha256=FjCOhnn30fI5CBcOkPXlJbyGEPBKTeEjrRSNHUBoWp8,3185
|
|
222
|
-
pyglet/window/cocoa/__init__.py,sha256=6t5EH8yM8UqDtXQaHKZJzQjNFBLULFW2_naRkZCttSE,29152
|
|
223
|
-
pyglet/window/cocoa/pyglet_delegate.py,sha256=8pugvWAI6pZ2y6VGF3Pvrhhgq4Pv0bLJr2h2K51ZOqE,7776
|
|
224
|
-
pyglet/window/cocoa/pyglet_textview.py,sha256=DbBZO2uaahx7NucGXY4YDIpvuDP6JOs3Z0l3ZZKCcLY,7983
|
|
225
|
-
pyglet/window/cocoa/pyglet_view.py,sha256=ZiWmWhjI4KWt1Gm2vlD1G2HrN0hBE-hWmFV8o70M1Os,15775
|
|
226
|
-
pyglet/window/cocoa/pyglet_window.py,sha256=ttcI6ox5ijDu-f1JJMAzdqK31kBv22iOQHbfBwu76nA,3627
|
|
227
|
-
pyglet/window/cocoa/systemcursor.py,sha256=-rMhvPH3DWl4gsSTCUbkn-yUnbyKM7JdQLfb5RKb8xM,775
|
|
228
|
-
pyglet/window/headless/__init__.py,sha256=QT3vdaa8qIJVm9B8u17c9-agIG_wrbAIPExNdIFuNjI,3254
|
|
229
|
-
pyglet/window/win32/__init__.py,sha256=rmxohCsReTiEbMmegLxjvzH8NnERbd2jbvdz_zbzCqA,55910
|
|
230
|
-
pyglet/window/xlib/__init__.py,sha256=_SmSwQlhiYx37P-jMR3WVZDDQV9A3O6qFNvPrzSDfwE,70725
|
|
231
|
-
pyglet-2.1.13.dist-info/licenses/LICENSE,sha256=V-fuy2c8jUDPMZJjPEgH-6jIFoUymjfht2PhVW1d7TQ,1546
|
|
232
|
-
pyglet-2.1.13.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
233
|
-
pyglet-2.1.13.dist-info/METADATA,sha256=eBVNY-EXhA_dIbPGTPuklvYYvR-UXdeMPfYQbws6mHQ,7673
|
|
234
|
-
pyglet-2.1.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|