pyglet 2.1.12__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 +4 -17
- 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 +27 -5
- 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 +147 -177
- 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.12.dist-info → pyglet-3.0.dev1.dist-info}/METADATA +2 -3
- pyglet-3.0.dev1.dist-info/RECORD +322 -0
- {pyglet-2.1.12.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.12.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.12.dist-info/licenses → pyglet-3.0.dev1.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
pyglet/__init__.py,sha256=k9dlCi7pFppWg6nhYDVDl72SOrFI1csJfUy38MA4vSU,20407
|
|
2
|
+
pyglet/__init__.pyi,sha256=9u7QMSgtt8naB78xgUESPKTxIUVPJtpxlk8x2cF027g,2136
|
|
3
|
+
pyglet/clock.py,sha256=ZiYHckYRIUKuN1XmywQc3Dastd7O40Lw2XeMjC3iMtk,21892
|
|
4
|
+
pyglet/customtypes.py,sha256=PG5TUoV6jfxeiv4PpyWbQYfFyOGuJbamtLs4tXnqE2A,1363
|
|
5
|
+
pyglet/enums.py,sha256=-LK3NQVzIbGsgLFKxLUk_Edcm-gWy29X_rLU9UsOJdM,4582
|
|
6
|
+
pyglet/event.py,sha256=P0F5bpyhHB7QuTuuJpel0152MMgRki53KyOSSlXUzc0,19208
|
|
7
|
+
pyglet/info.py,sha256=8AJf0j_tKAiS9dfPlvI-WkoTKVS94IynpQ1V3Qfrz1U,5963
|
|
8
|
+
pyglet/lib.py,sha256=DIwUHyZ6oOm6lYDql6NP9OeVz3Weska6WtgURqcFDUk,12004
|
|
9
|
+
pyglet/math.py,sha256=lMCspxzd_pOeLQev5HAA92v8nYFPfGjfK-mbO6iHK3E,56117
|
|
10
|
+
pyglet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
pyglet/resource.py,sha256=AxKvdSeb7RI34bB5Omon2Jm58izMet3mYLfS6Qmtof0,31863
|
|
12
|
+
pyglet/shapes.py,sha256=0NisrsKWmzRv4SGzK7X3GyOTYGppigTS18-Hype4X14,97588
|
|
13
|
+
pyglet/sprite.py,sha256=WQ4MqzhpUaIovLZQDx0lPdTMw9gLVhXH749bdXalM8c,25763
|
|
14
|
+
pyglet/util.py,sha256=OPu-Lw5Rxu1NMcsXBSM3Y-_3r2J09OjmdfUUAqSWvfg,8647
|
|
15
|
+
pyglet/app/__init__.py,sha256=6-OrPgYKpa1YYg-CbHH2IjckbcBoga6njAcoT0BzRhw,3383
|
|
16
|
+
pyglet/app/async_app.py,sha256=6PuztryUefWJEh-aYusTJMcKx1lKJ9fbnwDtYwZmDkc,7635
|
|
17
|
+
pyglet/app/base.py,sha256=bfFeSd_9ruwUhTNOAKXzOTKVfwRGHH9zcVphzr4jWYo,11649
|
|
18
|
+
pyglet/app/cocoa.py,sha256=NUy06NCLppmM9F0NX7kmKEL5sMMeq-Ia6f00lCAIxiE,10850
|
|
19
|
+
pyglet/app/linux.py,sha256=1NvCvd6tB2_j6sAgiSVoZnfdUQOkSem67_WUWh8W5Ew,2527
|
|
20
|
+
pyglet/app/win32.py,sha256=252RfeIBB9TtytMf1bd6Zc1FDF0W3bukCJAlqfP4ioM,4340
|
|
21
|
+
pyglet/config/__init__.py,sha256=THPui02SVq42nmzymak6zGe_P6L-2DeP30EWJGUld7Q,3766
|
|
22
|
+
pyglet/config/gl/__init__.py,sha256=B2c-aJxw9riueITu96lQmP7zOTX0ovgVPxsSP8H6ZpY,1024
|
|
23
|
+
pyglet/config/gl/egl.py,sha256=N6PRzeZMt7nv3p-pCTP5PGDiDGET1tYIZ3oimaaj164,4341
|
|
24
|
+
pyglet/config/gl/macos.py,sha256=cETxMn-v7xWCtmu_P7wq8742tcM2YmMuOJtofdr5A_0,9545
|
|
25
|
+
pyglet/config/gl/windows.py,sha256=2pJEYLquvAxhNT2H98Z5v453axw0eT3bJnMnoMw2B80,10605
|
|
26
|
+
pyglet/config/gl/x11.py,sha256=RBPGSOhxaHMcNOadn7A3kIlTQiaJcUCr1caHXGygm3g,5613
|
|
27
|
+
pyglet/display/__init__.py,sha256=TGA9G9AVbQDl0dMgVe6E2ai_x5aTzgG46URH9Kbn_P8,3422
|
|
28
|
+
pyglet/display/__init__.pyi,sha256=JRd3vFMahd1YC3r-uPgr99V9yAmiut1QZXKMFmstg5o,65
|
|
29
|
+
pyglet/display/base.py,sha256=Tv242y_oPOMuGophRm77d0yIaUWRcJgTLQr-38WIcu8,7933
|
|
30
|
+
pyglet/display/cocoa.py,sha256=S4RGlYBHzN1XEKwVNA5KzlyiXPM80iFrl0gj0TkM93Y,6067
|
|
31
|
+
pyglet/display/emscripten.py,sha256=ivRrCYGkzEgu35tsFDtveWhwxB1g53hnbNNK0wh2CNc,802
|
|
32
|
+
pyglet/display/headless.py,sha256=HAUfSgqFhyEhjUMJVuh0m2i6Y1jwCKwa_owopWbAOsE,2309
|
|
33
|
+
pyglet/display/wayland.py,sha256=RJm2NugApe0i8zkMItyrvTXNOBxaSi1FdvgJeDTz7sw,5616
|
|
34
|
+
pyglet/display/win32.py,sha256=wJkt348yNChPY3CmPQ5q__DeXQURxuwMPxjUG6iY8C0,8824
|
|
35
|
+
pyglet/display/xlib.py,sha256=dcr0yKYAkiNZsXt2nzrIjPAqmHkfcwARqQ6kIHbip3I,16883
|
|
36
|
+
pyglet/display/xlib_vidmoderestore.py,sha256=CJYmC3sULW3ljhBzyFSR4gKe3EavxK2IWIRCMO6ATOs,5675
|
|
37
|
+
pyglet/experimental/README.md,sha256=bipJa3Y-kpEu9Uf_HNZJR00AAbfpUyGAKGEFdRY8YsI,222
|
|
38
|
+
pyglet/experimental/geoshader_sprite.py,sha256=LPVxesigTM-pDdJMw1uq38zPeanLt_y_LGm11XCBziE,24856
|
|
39
|
+
pyglet/experimental/hidraw.py,sha256=M10Ln20auYejOQlk2XsYKS-hbdtRsHPvEpMjd0OorjU,4595
|
|
40
|
+
pyglet/experimental/jobs.py,sha256=dpc-HhuRgKJo48zvW0BPsjAeLSlGkwxx9nK8hgQKdYw,4459
|
|
41
|
+
pyglet/experimental/multitexture_sprite.py,sha256=mwKfKHmJc76nogaVTONE1U2cd9zH3N5INNXHKRd7a1s,20955
|
|
42
|
+
pyglet/experimental/net.py,sha256=wYRCuDb2YEKzkGKFhG25Fwe8PXU0aJp5IZ5JdaSyUjE,7680
|
|
43
|
+
pyglet/experimental/particles.py,sha256=S-TD80mOHLpQdTcCEKSHCuouA3ppfSmAtyti_TIvqpM,13699
|
|
44
|
+
pyglet/extlibs/__init__.py,sha256=rbqvpywhuc1ZNYmTQ_mHoL07CrYIlNbKhwyhH7KygUo,128
|
|
45
|
+
pyglet/extlibs/earcut.py,sha256=uww7nwDtc0moYR-3wkeOpYNUJYCzov35h3vQQ0XnL-0,19281
|
|
46
|
+
pyglet/extlibs/png.py,sha256=u8AAGIZPWdGxlrBaOQYVBwpjiay3CKJ1AMrKrwimDHE,81404
|
|
47
|
+
pyglet/font/__init__.py,sha256=teoIDcwV1cNlz9qtl3wnQEaYwFE14BUUbvH7BBPuTac,15156
|
|
48
|
+
pyglet/font/base.py,sha256=at0v6QxH_z2zOS-_V9ioS8orVmwajv2NvzyQeTJqAKg,19791
|
|
49
|
+
pyglet/font/fontconfig.py,sha256=vcuUVAcKjh-YMyFYreyI7ngTS27n3UFDI3PsHNhXAS0,14645
|
|
50
|
+
pyglet/font/freetype.py,sha256=bchmM1G-zP7lldHP7hD9I-Iz_4BTpCdYFY0QcJfqEd0,21523
|
|
51
|
+
pyglet/font/freetype_lib.py,sha256=Vd910wZLk1DUgeOz_pat35sf2rv0WjfMGlThpCKZG_E,21775
|
|
52
|
+
pyglet/font/group.py,sha256=nl59xOZa8FSxbCuZbBeS-oDizpmvJlL1GWrUtjMNTDQ,6382
|
|
53
|
+
pyglet/font/pyodide_js.py,sha256=CNVVA7PYb00s50QWbtgXURZiArbqy1U9Jc-2pyZ-GyA,11253
|
|
54
|
+
pyglet/font/quartz.py,sha256=8ECxFQH1EKPPh80gjMyo0EZ6SYNRg_dUGGCx8r6_KR4,33113
|
|
55
|
+
pyglet/font/ttf.py,sha256=NSNindxFmBMrYwsmOcFBio2TppEVpgKRdceCvXwinR4,25668
|
|
56
|
+
pyglet/font/user.py,sha256=n0wjHTv8GaK-JnFC5w-8ilzYDzA79izQd-FwAriDlx0,12289
|
|
57
|
+
pyglet/font/win32.py,sha256=M8BGnHgmMH9KGgPV0ytkF4HDcbJRmAwA_ixk_qXnC6w,17275
|
|
58
|
+
pyglet/font/dwrite/__init__.py,sha256=sbWmrN1jfqaA3ggeB4QY5dBM99FU-ko_4jKUduAdTY0,57186
|
|
59
|
+
pyglet/font/dwrite/d2d1_lib.py,sha256=dqLJo33Xt5WiUWaXnrTPQKGQFclzcMV8ysRNtEHGrqY,19563
|
|
60
|
+
pyglet/font/dwrite/d2d1_types_lib.py,sha256=-vzx6qyHfdFQ6n8Sf38LxYRNWFDnz_zJR_AvnxFPEDU,1201
|
|
61
|
+
pyglet/font/dwrite/dwrite_lib.py,sha256=4stGYSyXxGZtjFyem3iDU5xi1wIQGGBVwhWrbJ9HiHM,52484
|
|
62
|
+
pyglet/font/harfbuzz/__init__.py,sha256=I8IdpEh54m-H8OH3rvPDzS6EjDG2oVvSLf0iEYyzgfo,9739
|
|
63
|
+
pyglet/font/harfbuzz/harfbuzz_lib.py,sha256=en7JiJRJ2EkuiVekSoKXi9YZ4p1ptQsVs2RWYMO02UA,6761
|
|
64
|
+
pyglet/graphics/__init__.py,sha256=Bv3T2p5_Y8jRQbfJdJj-eHCBJ8XajqLvPzTHCScWZGs,978
|
|
65
|
+
pyglet/graphics/allocation.py,sha256=GnrcW2smgbiL7f969LMCLzEonbTlKSYBkNUL_aqu9FI,15793
|
|
66
|
+
pyglet/graphics/atlas.py,sha256=L66sFlTIHFCztVVlJGqB8M7_EXtzWWubzc9XD38_FCo,10124
|
|
67
|
+
pyglet/graphics/base.py,sha256=tQpTExwhT9nm0xs7V4i9i42EZ0oZ8oC232ezov-hgWA,195
|
|
68
|
+
pyglet/graphics/buffer.py,sha256=zfxB3Y357NqlEkNHebAkjNYfwDyT-qdcBcrIXt4jl-k,7769
|
|
69
|
+
pyglet/graphics/draw.py,sha256=a1YdoUhGSOBMkPJCEVVbvwf8v0Zc3OgtxYLrDU1rtzU,21094
|
|
70
|
+
pyglet/graphics/framebuffer.py,sha256=qS_1r1OhRuRPuPT6_U0CmaV3aDALF6I35eX62NJw3fs,751
|
|
71
|
+
pyglet/graphics/instance.py,sha256=GgUaNAsyNKAUTZ8IpxIFH_CO-EQxdyRJ-W98IXuUcig,6871
|
|
72
|
+
pyglet/graphics/shader.py,sha256=tjwSrG0bcTOLIm-I-sSqjS88nSzXLmJvumhY6pkldwQ,14997
|
|
73
|
+
pyglet/graphics/state.py,sha256=8EYs_B-mRv5IiVdpJclPfk1rMAZhr251Bok7-nGyxDE,3075
|
|
74
|
+
pyglet/graphics/texture.py,sha256=ygOzam8EzJZrlDrjVZ21kxVnngDzel_3-Hz8p1KHC9E,26907
|
|
75
|
+
pyglet/graphics/vertexdomain.py,sha256=1sMIh2wh1a-O-PZFs1s6hJyk3QQdi3DHjoF9jalwFqU,38804
|
|
76
|
+
pyglet/graphics/api/__init__.py,sha256=BKEPUa6xW3upTuf-8kClwmd3H1MgvUAMXvNSW82DXa0,2640
|
|
77
|
+
pyglet/graphics/api/base.py,sha256=czguedpG5LZahcAuzM9XPfqeBbADOMrAN1MRZWqI2l8,10080
|
|
78
|
+
pyglet/graphics/api/gl/__init__.py,sha256=2E7XgGHadcRfxsewfGiWiay7uHNR_6grJrYwl7NZCD8,2103
|
|
79
|
+
pyglet/graphics/api/gl/base.py,sha256=axjGcVI18fdNuMqg5VoTmR_trm_Cc7KZ5CAahL2rZ6Q,567
|
|
80
|
+
pyglet/graphics/api/gl/buffer.py,sha256=Fxbw8C7ePEGNpBbn5vMJ0Jq7LFMPdYl-3wMpwtkNRWA,15020
|
|
81
|
+
pyglet/graphics/api/gl/context.py,sha256=oQYFb_r9POJ26R2BEmYrL2OQJnyNvd2ij-vSzGgHFfE,18265
|
|
82
|
+
pyglet/graphics/api/gl/default_shaders.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
+
pyglet/graphics/api/gl/draw.py,sha256=S9h4QMQyhOue3gFbUaabiz-R2k6_Sxg8m34m9NvEK3o,22587
|
|
84
|
+
pyglet/graphics/api/gl/enums.py,sha256=BB629-whq9zbcK1ENsbEOvkNAIU4u_7vIFhZnt76-mA,2861
|
|
85
|
+
pyglet/graphics/api/gl/framebuffer.py,sha256=c1Q_VrxVxRtV5tgfuoFTok1Dsi4UGRc3hEhXB9y7ydw,12324
|
|
86
|
+
pyglet/graphics/api/gl/gl.py,sha256=COZ8U9WggnSCyuIRFL_9ryvSDiSnOi4b-lBN85rw-SI,328806
|
|
87
|
+
pyglet/graphics/api/gl/gl_info.py,sha256=_yGobJQW5_AzJ4BJHWGd4ZRgu-ZcN7QQmrjlv6MkPwY,6559
|
|
88
|
+
pyglet/graphics/api/gl/global_opengl.py,sha256=m7vJ6G4z_IQ69UzJ62gKWhZO4izC7uauSXIkMrqmziE,8510
|
|
89
|
+
pyglet/graphics/api/gl/lib.py,sha256=K1nQQQMT-bwQHqcWEMOD9L5PbTJZXpTFTZ7sbkuPUHQ,4116
|
|
90
|
+
pyglet/graphics/api/gl/shader.py,sha256=yJ-X2Y8uL98Z9sig042XNdBr5P9DzcDXxkp67CwsNhg,58402
|
|
91
|
+
pyglet/graphics/api/gl/shapes.py,sha256=AFinzY2zpatROpeRi3-mjyEm6C9dHKP9q0FyGbStF5k,1327
|
|
92
|
+
pyglet/graphics/api/gl/sprite.py,sha256=GN1gxTkF3G_Tz5TZKqIOOlDRj7WWXzO5UqNuuCkRcNI,2563
|
|
93
|
+
pyglet/graphics/api/gl/state.py,sha256=ehga-VKOu__FSSrevno-Eoi9Q_uyEOv6MIFS032NTyc,5693
|
|
94
|
+
pyglet/graphics/api/gl/text.py,sha256=ycM5QOKeU4RfQR3GwoQ7VoLbjUfKxxo3UTSAE03IywU,5770
|
|
95
|
+
pyglet/graphics/api/gl/texture.py,sha256=xUvJp-72X5CMSDRQzG_IFfjnMm018pqPgg2QcAYo8z8,62204
|
|
96
|
+
pyglet/graphics/api/gl/vertexarray.py,sha256=Wcw1zBgmNGi56TLn-Leue_Qm1O0vvDLqma4fSNmCKvU,1430
|
|
97
|
+
pyglet/graphics/api/gl/vertexdomain.py,sha256=NskLolb_IV0nTyUlThdvHdzMi5O--8KbCUzSxLIM0w0,29001
|
|
98
|
+
pyglet/graphics/api/gl/cocoa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
+
pyglet/graphics/api/gl/cocoa/context.py,sha256=yY83DErwz_YJfiK4_zpHKUCfYVWUVDA1fpZptf4ssTA,2636
|
|
100
|
+
pyglet/graphics/api/gl/egl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
+
pyglet/graphics/api/gl/egl/context.py,sha256=_HVLPYQypMlUcGCckCXcl2EDQn60-e-gR1m4qeUt-G8,3043
|
|
102
|
+
pyglet/graphics/api/gl/win32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
+
pyglet/graphics/api/gl/win32/context.py,sha256=75G-2bu46vg_90zN0wXslFUSYNP4KkDSLEZATCeNyjU,4097
|
|
104
|
+
pyglet/graphics/api/gl/win32/wgl_info.py,sha256=9ArpOwBbLzkYKBBMrU0_LW5I3glrbvzL-u1ifrPQpv0,857
|
|
105
|
+
pyglet/graphics/api/gl/xlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
pyglet/graphics/api/gl/xlib/context.py,sha256=m1haX24hYNS1Yj8V_oCteGzkaiG0svQYRZi7Wu4fwzQ,6698
|
|
107
|
+
pyglet/graphics/api/gl/xlib/glx_info.py,sha256=Xj9-UgEcjP6ZdDkwZX_23wwSnjtI7M-brYkPTfjCBY4,4103
|
|
108
|
+
pyglet/graphics/api/gl1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
pyglet/graphics/api/gl1/gl_compat.py,sha256=mSFfS-nOaGn4ZqZITA2mcwDFD2kfccQsXU7djasGALw,277436
|
|
110
|
+
pyglet/graphics/api/gl2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
|
+
pyglet/graphics/api/gl2/buffer.py,sha256=tjFFM2ZTlr_EsPAE53Fef7J5hGSMYdljJwaBD6utMKw,11231
|
|
112
|
+
pyglet/graphics/api/gl2/draw.py,sha256=wGvfEnFnNL0GgupiaYiS0-Cx56YsFO57zIDQ63HLHxg,22039
|
|
113
|
+
pyglet/graphics/api/gl2/global_opengl.py,sha256=nJNxNfP3wnwPh1TBZTuerm3pjcL2AXaBZmXztds_k94,4569
|
|
114
|
+
pyglet/graphics/api/gl2/shader.py,sha256=hpJGco0hI7jZIuvHuHO_bXaX9MTW19Q-fXLxbdsVVts,5902
|
|
115
|
+
pyglet/graphics/api/gl2/shapes.py,sha256=kL8UcMLvsN-qxIzuFsg4XE6eqTV1FcBfvQd7a1sRfvk,1282
|
|
116
|
+
pyglet/graphics/api/gl2/sprite.py,sha256=6TBThXBu4Jlx-Ag4SetsjVR3Mn1r-agKxWPw36j4l3Y,2111
|
|
117
|
+
pyglet/graphics/api/gl2/text.py,sha256=yUighYARo1XYL3LCDM38XhM6JEspWIR6aVYxBKi9nVM,5733
|
|
118
|
+
pyglet/graphics/api/gl2/vertexdomain.py,sha256=YglPLVjQiYXvhtcqi-7qmL1Pv4VkERyiXK4pALhk2VA,12793
|
|
119
|
+
pyglet/graphics/api/webgl/__init__.py,sha256=bXbzLgwEgq38HltCC9B6L87f2jTwXs01S8ziA_qytv0,8530
|
|
120
|
+
pyglet/graphics/api/webgl/buffer.py,sha256=CiQ4IBJ-mm49jBdC3SjEL9vB7prjl-ZHsZoLeQuqY8U,10924
|
|
121
|
+
pyglet/graphics/api/webgl/context.py,sha256=dyIgfldsvZEh7l6nWYtvRqMg_imcE5o6Nn1zkggmc_8,9726
|
|
122
|
+
pyglet/graphics/api/webgl/draw.py,sha256=e6vJLKkNN3NpOoftMcBuJgFWgK5kEqRnYVH08nD7ZTw,21872
|
|
123
|
+
pyglet/graphics/api/webgl/enums.py,sha256=oJBolEQtRbrgpFHk5pjANKbzi43WyUI9JI-OdnSe-Cg,2867
|
|
124
|
+
pyglet/graphics/api/webgl/framebuffer.py,sha256=ktYk-6qjuNLe5lrexWzDz-bMFHEw3tiulNnOLtSIB7w,13231
|
|
125
|
+
pyglet/graphics/api/webgl/gl.py,sha256=mf2sZ-crpzN3SBauJwXAgdwM8KKUwMGuhxJY0xHNwns,48073
|
|
126
|
+
pyglet/graphics/api/webgl/gl_info.py,sha256=Qvw9je2JZhAz8v677bnGlM-NkUD5ov_hs-ovmRQwfp4,4693
|
|
127
|
+
pyglet/graphics/api/webgl/shader.py,sha256=JdgGNjLQbKyIFRPkqipZs-uzlofyh-DHHD5qZMLTXYg,48686
|
|
128
|
+
pyglet/graphics/api/webgl/shapes.py,sha256=eeTW49WYPx3m1RsHVY8OHPmOcLlJLl8qa36KPXuLm9M,2404
|
|
129
|
+
pyglet/graphics/api/webgl/sprite.py,sha256=btoIsHWRXFkFuVmNfdEgw7rDUfHeQtk6XqRHnn6U5AM,2570
|
|
130
|
+
pyglet/graphics/api/webgl/state.py,sha256=dy4re9_uwa_c67uSEwx0MAbEho6KXyYL5n6CxTOZECQ,5983
|
|
131
|
+
pyglet/graphics/api/webgl/text.py,sha256=KvUZYxNlluoj7aa9aWqUeDN1_-_4CNbVRQPd-6PrtsA,5740
|
|
132
|
+
pyglet/graphics/api/webgl/texture.py,sha256=HxTH3l2hj4j5T3Dq7-KOgVhbXCsDWnAlblFc7vVsf50,46213
|
|
133
|
+
pyglet/graphics/api/webgl/vertexarray.py,sha256=Fpa9PM3CZdFetICIPJ2p2DwLwKLSZUopTxBK47fLKPc,1443
|
|
134
|
+
pyglet/graphics/api/webgl/vertexdomain.py,sha256=XnhXkR-FHFcuyRd126suvehjx854cTKVQmjl-8HGaKo,23801
|
|
135
|
+
pyglet/graphics/api/webgl/webgl_js.pyi,sha256=CKBvaSNcLzdw2usJSy33_amhMhnoiMYM6sZQnVQOfRc,18972
|
|
136
|
+
pyglet/gui/__init__.py,sha256=vW9yvUBoKz6nG-VpyIYwHMmq_y_2LWAZvFW9LYQALog,77
|
|
137
|
+
pyglet/gui/frame.py,sha256=R9QXswxNAC1tUqB7OA2tt6jATqjghgjRYeZ5WyHoN1A,8413
|
|
138
|
+
pyglet/gui/ninepatch.py,sha256=lZS20I6V1Yjfuq4NoELjWwI8ct2TyKk8QLtITXTntNk,11430
|
|
139
|
+
pyglet/gui/widgets.py,sha256=2ymFTdompojowlUKwxrxI4zQiYDws6ckMwigeml2SeE,24857
|
|
140
|
+
pyglet/image/__init__.py,sha256=LuEVd_a__XjGi8BnKBsXy41x5W9WEPa4crKqVL3xTsk,8305
|
|
141
|
+
pyglet/image/animation.py,sha256=VvX83_hthCS-CkhfOfnMSrngAA1HGYD_a1PD7ooLdDM,5579
|
|
142
|
+
pyglet/image/base.py,sha256=1hZo_ukQDMK5KHkKAeUkObN4VKxBi-Z8tCkEqlDp-G4,27578
|
|
143
|
+
pyglet/image/codecs/__init__.py,sha256=sC7M7BGi3hq2DGfqPqf8JU7H5XxKPuuftqaVu3SaPJg,6764
|
|
144
|
+
pyglet/image/codecs/bmp.py,sha256=ekIR0CrYeI8Iy3LtlBq-4STacQeAUcd6gY03hwqy1QI,11214
|
|
145
|
+
pyglet/image/codecs/dds.py,sha256=kYwzcSrmvy3wc8El6hERgWid_HkiDglBSK5yceFfiF8,6341
|
|
146
|
+
pyglet/image/codecs/gdiplus.py,sha256=N2uBne0P11HtqKRAZHMgk0bnn1s_Dmm85NXr75gT388,12159
|
|
147
|
+
pyglet/image/codecs/gdkpixbuf2.py,sha256=9xjnuTw_OGv8OPB35HBAP-r9NCpt4ve9eKA1n87CShc,8897
|
|
148
|
+
pyglet/image/codecs/gif.py,sha256=h8JZhWo5uJFhavLVQ2CI8jfb3u4wuQca4RPawLa6F2g,3571
|
|
149
|
+
pyglet/image/codecs/js_image.py,sha256=EEmK7H9g7QvE7tVs30sOTLJm8BuqSnaj4zKZL4BW4mo,3096
|
|
150
|
+
pyglet/image/codecs/ktx2.py,sha256=jyuBkJiPqbNRPqSfp14BTdhhcKT5h5-4F_An3Vl4_-w,5149
|
|
151
|
+
pyglet/image/codecs/pil.py,sha256=GeRBvjrShnJfkMzmFT_Wze08II1VaeVTVGwcpxxk_Lo,2593
|
|
152
|
+
pyglet/image/codecs/png.py,sha256=hKQTyb1JP8RaPmMGFhRUVH_uDbep5yG_GWmfC4eCtbI,2082
|
|
153
|
+
pyglet/image/codecs/quartz.py,sha256=Nl41ool5MDnp6MDGQjWotvGNYIfobCq4UPnGMjyL0XU,4708
|
|
154
|
+
pyglet/image/codecs/wic.py,sha256=pWbc_fpwrno80S6WGA6_QIah12PbFEjtKFcgoRomMew,11458
|
|
155
|
+
pyglet/image/codecs/wincodec_lib.py,sha256=G2FSx9j9gMXpFOGUMt0a06C_DBv4LEaoAg103PW2Vx8,14602
|
|
156
|
+
pyglet/input/__init__.py,sha256=nbzEi7yrb1i2FahX_jpgJvTifOu-QanYKKQSDMs8jIw,6717
|
|
157
|
+
pyglet/input/base.py,sha256=CGT8WkA4TN9ZsHNxdiLZ_UsGr0RCQxP6bTbPAKxnnAU,41578
|
|
158
|
+
pyglet/input/controller.py,sha256=hiILzs-figLyUMPg-GsmfTQo7hPyQomLWUcPJfAFiog,5499
|
|
159
|
+
pyglet/input/controller_db.py,sha256=_1Q5gtmSiCTc7n8BGqhhSNstDwgbxywPBty2-1EySrU,200268
|
|
160
|
+
pyglet/input/emscripten/__init__.py,sha256=C-gCvwTqjRKe04E5dk2ykeXqD3m_7C9dnhkgOd7RgTA,499
|
|
161
|
+
pyglet/input/emscripten/gamepad_js.py,sha256=qe1fF_vRw_1Fxl6-0NO505ll7GFyBtpSR0ciw3cKpVM,14484
|
|
162
|
+
pyglet/input/linux/__init__.py,sha256=pbg-pW7rJzFQwlL3ivkZlLXHS2CHm8-B0UgXGEWizT4,424
|
|
163
|
+
pyglet/input/linux/evdev.py,sha256=EAYPjy44ZcX436iUYY_1xRTGyeezXimyk3KrzrEi308,21108
|
|
164
|
+
pyglet/input/linux/evdev_constants.py,sha256=647CtG6a8782mmfdr20yzwC4JeuW702emszR_WSuj44,9816
|
|
165
|
+
pyglet/input/linux/x11_xinput.py,sha256=N3WaFrQApKDXLLXVKH8xD5w76dR6AKNDYRzJx-GhavM,10951
|
|
166
|
+
pyglet/input/linux/x11_xinput_tablet.py,sha256=hz4IY0xv09m8-z7NbhzJwRHolRXLQxBHvGRi47uw3dQ,2965
|
|
167
|
+
pyglet/input/macos/__init__.py,sha256=f6jSBHwiVyRTS51xQtVoJw_p5h612c7VFE8-DCgqmtA,615
|
|
168
|
+
pyglet/input/macos/darwin_gc.py,sha256=TzfFkL2kAvuD7-Rtdy7zMDXH0mq55uVckHPm8Ne4bDY,20856
|
|
169
|
+
pyglet/input/macos/darwin_hid.py,sha256=VnoqvL26tZtU329yegtHUCnEM2zqmPbA2UKaOaSDWds,25549
|
|
170
|
+
pyglet/input/win32/__init__.py,sha256=74ceQRih1eFld1V6DAcJSnKKgipHh21-EfrLQ5R0s6c,4217
|
|
171
|
+
pyglet/input/win32/directinput.py,sha256=n4Zjc1ZVs6O6lpmTLTiYtU8XeEclcRXAERyZV1bGY1Q,17043
|
|
172
|
+
pyglet/input/win32/wintab.py,sha256=ST0pYMMTJ0feQHPQqmgkjMjhS1AaTLbiBA2KK4FmXJ8,14430
|
|
173
|
+
pyglet/input/win32/xinput.py,sha256=FR5sDT3gADFO6UnzLyn_kG8vyOarl7dwxkzkEPOWQaY,19648
|
|
174
|
+
pyglet/libs/__init__.py,sha256=h5XPyXeM2sbNYFDZiSAJL4yJGIPaTTcgt3vCw2lj278,585
|
|
175
|
+
pyglet/libs/darwin/__init__.py,sha256=Kx8qOx_xjgLZj9pf9qDj9-tZiWbzKfSmnmIeMaAiVnU,23
|
|
176
|
+
pyglet/libs/darwin/agl.py,sha256=HDkxyrxB12XIhgdLi4DqyLki3man2Qkbm8VIUVN0Urg,26733
|
|
177
|
+
pyglet/libs/darwin/coreaudio.py,sha256=ReinDWS7V9zuxizguwAfLorSttdfdoemftWYuD3JO9k,9027
|
|
178
|
+
pyglet/libs/darwin/lib_agl.py,sha256=vuyHGzJpAhkclocFMDcu_A9XVEVZbQwDXmwXXYU8MdI,1219
|
|
179
|
+
pyglet/libs/darwin/quartzkey.py,sha256=jEw9t8vaZKcJ2bo8s1aNczzuhTxyUBIHLn4upHCM3N0,6012
|
|
180
|
+
pyglet/libs/darwin/cocoapy/__init__.py,sha256=ABcRm7HywzifYCDraryAf1-ZgrkTQic5xThbhagzY8Y,1836
|
|
181
|
+
pyglet/libs/darwin/cocoapy/cocoahelpers.py,sha256=Wq_OaopVE_Eg2PUI-DS3OWwQx7QfFMT16v0bLsSzU3c,4867
|
|
182
|
+
pyglet/libs/darwin/cocoapy/cocoalibs.py,sha256=GQSIdsOjZ_Pg79aaWm5EFC17eheEm15Tzi5Vjr9heAM,27155
|
|
183
|
+
pyglet/libs/darwin/cocoapy/cocoatypes.py,sha256=3fomjXQ1wBa4kBMCF4poC04bwI5QCbV-ks1PAWKbjtg,3383
|
|
184
|
+
pyglet/libs/darwin/cocoapy/runtime.py,sha256=cFTEczspbPFuhkgVeXbgyyT6b-42_M2YInXiONEHBpE,67761
|
|
185
|
+
pyglet/libs/egl/__init__.py,sha256=jA17RJcYtX59G3lRsnMGyP5OHD1Ni3GCgpQI5MeATno,75
|
|
186
|
+
pyglet/libs/egl/egl_lib.py,sha256=x5LZT9iI-cWf4DA82fIuGaGPzhcmQghYs5gzciYjfE4,30173
|
|
187
|
+
pyglet/libs/egl/eglext.py,sha256=f-Fhbjlu5jVcfGg1upj3-3-D9pGwU78qV89Xee64OgU,2529
|
|
188
|
+
pyglet/libs/linux/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
189
|
+
pyglet/libs/linux/ioctl.py,sha256=bQu9hpqYKMr0m0lXajlmSPGf4w72dGz1YLDOrq2uUz8,3700
|
|
190
|
+
pyglet/libs/linux/egl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
191
|
+
pyglet/libs/linux/egl/egl.py,sha256=sfSx2puVsMJDIY_xH9EbadsG3cCpsNUN7V2UgebUzvk,29920
|
|
192
|
+
pyglet/libs/linux/egl/eglext.py,sha256=Xwr3NBnJ4NPIuYPcyw2RlTxe0Wmfq-oOV-GCpxgTYsQ,943
|
|
193
|
+
pyglet/libs/linux/egl/lib.py,sha256=IdQfLfRPbTckgNBEIUumdmEQ6iSWiy1nhTnkTTzaZ6M,893
|
|
194
|
+
pyglet/libs/linux/glx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
195
|
+
pyglet/libs/linux/glx/glx.py,sha256=zy0Kh1Knz8XqNX1Vny2iScz7R9Ynn096YpiVwzgZtrI,29148
|
|
196
|
+
pyglet/libs/linux/glx/glxext_arb.py,sha256=AMV9G0b2j-psdz5IpRecT6CH3yRy4iZK6VnuG7CN-pA,52132
|
|
197
|
+
pyglet/libs/linux/glx/glxext_mesa.py,sha256=kvC9oavwl6YggNOYA1afu847qKTrab62sbVz1t4uHlA,278
|
|
198
|
+
pyglet/libs/linux/glx/glxext_nv.py,sha256=tZ1ZSdu2P22hICdIwppbhGewHk5VJm8JsF_iNMWDqFA,42945
|
|
199
|
+
pyglet/libs/linux/glx/lib_glx.py,sha256=F-RdLjDKT0Zgvz9iK42IiFt2TY3YC4cV19BOVR6WXEA,1947
|
|
200
|
+
pyglet/libs/linux/wayland/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
+
pyglet/libs/linux/wayland/client.py,sha256=ojIePTQsdIHq9aZI0wIlLuLzf-5rTcPXBV7m1BGjha4,39073
|
|
202
|
+
pyglet/libs/linux/wayland/gbm.py,sha256=iv6IKaB_U9t3s8njo0zy29rksbFPKEYlmGjF7wHjYr0,13388
|
|
203
|
+
pyglet/libs/linux/wayland/lib_wayland.py,sha256=xX1_xSRKyN3RMj7m-FgNFAktGZdatYdLyT7KdMxpOMQ,6938
|
|
204
|
+
pyglet/libs/linux/wayland/wayland_egl.py,sha256=ANsKsyN-XzEMho9wqHyelsj85wHIyejGY0VxXM_H4-I,1026
|
|
205
|
+
pyglet/libs/linux/wayland/xkbcommon.py,sha256=ZIWXxxBqPwEc23dOOa7aV_WfLRRjt0VTFNs2-2AshLw,21617
|
|
206
|
+
pyglet/libs/linux/x11/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
207
|
+
pyglet/libs/linux/x11/cursorfont.py,sha256=31GFWHJWnNrmaiF6uvjUdLSM7gBL9DL0kjnfxjM8jAg,1451
|
|
208
|
+
pyglet/libs/linux/x11/xf86vmode.py,sha256=2SFDLvymE_95MmC3MkLkqn02T-cmtpSWNJs2BIiNrM4,13555
|
|
209
|
+
pyglet/libs/linux/x11/xinerama.py,sha256=AHiKmKCzZYNntipwlyuLslwgxdfHhdfu9c70_HzwNzo,2194
|
|
210
|
+
pyglet/libs/linux/x11/xinput.py,sha256=padXFdRKuH_vqasGpYsjrhQ0p5QnEnIQB5OxZwTobR0,54616
|
|
211
|
+
pyglet/libs/linux/x11/xlib.py,sha256=JRcqjnIyA4K8nnC2U3_sD9Rrc9r-HS_MVkBLkfOqQxY,188808
|
|
212
|
+
pyglet/libs/linux/x11/xrandr.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
213
|
+
pyglet/libs/linux/x11/xrender.py,sha256=1u54KPYf1EWIdHLGTobJU2k4Y3hKp3j-vbMUXsRypEY,1178
|
|
214
|
+
pyglet/libs/linux/x11/xsync.py,sha256=mUM27lMC-KhnoYT9RZkdCnZ7HWoqHdP9onvnfOxDElI,16381
|
|
215
|
+
pyglet/libs/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
+
pyglet/libs/shared/spirv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
+
pyglet/libs/shared/spirv/lib_shaderc.py,sha256=yvASCReD5KbjIzpWmjxg1FMuMOx504Ij9hYH6YYN5sE,3491
|
|
218
|
+
pyglet/libs/shared/spirv/lib_spirv_cross.py,sha256=dkkaZp5KgmE269KB2tgtaHkBJMPAGpPQKSXjf-t3rbw,4075
|
|
219
|
+
pyglet/libs/win32/__init__.py,sha256=qNk2CVDGoo04mrsj4-GlHa52cG0u4VIFcx4l242_ME0,15993
|
|
220
|
+
pyglet/libs/win32/com.py,sha256=E4lzOzkmPRbV0F6Hj1MH_PQK46N_-USaOjPJbjgrXpM,17607
|
|
221
|
+
pyglet/libs/win32/constants.py,sha256=2aUThbzcEBd6lmTm3MGbTGUI0xVxL7bnDl8F3D_H5GM,121693
|
|
222
|
+
pyglet/libs/win32/context_managers.py,sha256=vyEmY5BSecLmzkNxZd9A78LURgEX2o74LTLCGhpKnDs,1835
|
|
223
|
+
pyglet/libs/win32/dinput.py,sha256=1HLrM__L0DLQMaln3C2qcKLkLQVyJkRv0_WJmk637CU,11883
|
|
224
|
+
pyglet/libs/win32/lib_wgl.py,sha256=2RoR5lKIEzzK-sF-M50fdNWbGo1xt0TUB7IilU7IEeY,4542
|
|
225
|
+
pyglet/libs/win32/libwintab.py,sha256=Qw2UmNG2-rZov483o16qjFtywwMGBJbDbIuKl_NFLe8,10901
|
|
226
|
+
pyglet/libs/win32/types.py,sha256=cinP1rEDDKqiEVLFgAIolDi648JdI5Ht7YezHJgapqk,19462
|
|
227
|
+
pyglet/libs/win32/wgl.py,sha256=Ss25cx2JeZK64ubA3mXzKbQ3NHEISd98FmdMo2Wfgmk,8690
|
|
228
|
+
pyglet/libs/win32/wglext_arb.py,sha256=F8QynAtSRAzSZov4N0zLinB-Gljrk_PxB4mIrbQnt3U,90553
|
|
229
|
+
pyglet/libs/win32/winkey.py,sha256=0yKZTOyrGirM3oAIhJRUgiKwDgQ_XF0_k9KRXf3MJaQ,4667
|
|
230
|
+
pyglet/media/__init__.py,sha256=F_Ijj40fTYyPthkEmEbN-bIgFLVISUYQst5Mf16pWJU,3537
|
|
231
|
+
pyglet/media/buffered_logger.py,sha256=3B64IdPSWiQtHteT1ZbdBmd9NLB8_bDvNJ4AE6sZQ84,1025
|
|
232
|
+
pyglet/media/exceptions.py,sha256=ftERqNPFB2F05Ml3jx3t-0_SXtgNWwZO9DavsGRN8Nw,152
|
|
233
|
+
pyglet/media/instrumentation.py,sha256=omCYjxTzbnM5Z3U6viAgJOPICwbx1dEjDTVE37Y0z0w,10797
|
|
234
|
+
pyglet/media/player.py,sha256=xO37k4ZROg3My686fQ8HKv5SWAzc3W_hGN2Y9llfly0,25085
|
|
235
|
+
pyglet/media/player_worker_thread.py,sha256=TuwdCJP_JkPkeXY4Ng9MGTpVWQZCI-QVWM3OSiJrWho,4294
|
|
236
|
+
pyglet/media/synthesis.py,sha256=ToaL2Y9y8cIjHHjlGHxpiBZqpfpBcsYFFgtutw_N1cE,13158
|
|
237
|
+
pyglet/media/codecs/__init__.py,sha256=K7EwMY4AaxyvjfxRUWwtuvjIwUMiy9FKm0WNN1eva-c,3993
|
|
238
|
+
pyglet/media/codecs/base.py,sha256=nFgKz_t7NdwCcjc995Y1IzsQYUBo_XgsAHXbuOePc8w,20853
|
|
239
|
+
pyglet/media/codecs/coreaudio.py,sha256=pPhbUkzVNhKnhKaD2hiyuo8kkgTKA26L0WKGB742Rv8,6838
|
|
240
|
+
pyglet/media/codecs/ffmpeg.py,sha256=ub-vduq7R_2PKj9QRZbymOSZx8KcVgRINyRxondfiDQ,43649
|
|
241
|
+
pyglet/media/codecs/gstreamer.py,sha256=kzg4k7aBJdIq0SubUuXc9p3dHP4gtGfP24dQcR28wOg,9250
|
|
242
|
+
pyglet/media/codecs/pyogg.py,sha256=eTUI5Kty1HpMyWsVWQeXchl03l7I0HSo3j2VJbhftE4,17728
|
|
243
|
+
pyglet/media/codecs/wave.py,sha256=zYA4z52BHE-q5Gl4YHL1ujdtC69lmkUsJ6o69OnStUY,3801
|
|
244
|
+
pyglet/media/codecs/webaudio_pyodide.py,sha256=excRMJqpSXlllDZgNCD0MqA5bDO8PKK-O7iuHYLO8Uo,3475
|
|
245
|
+
pyglet/media/codecs/wmf.py,sha256=CpBuhvb8U1N11sLrxAVEao_37VAHBS-yMk8ZIQaQzWQ,35263
|
|
246
|
+
pyglet/media/codecs/ffmpeg_lib/__init__.py,sha256=MzdctEH9MnPm-ML5rJRvVmpe5EEKAD-9lBsqLNztx1g,201
|
|
247
|
+
pyglet/media/codecs/ffmpeg_lib/compat.py,sha256=FPbwoEBcA3EIssDc1sastvcw0yy1erLyK62wHQ0vDJo,3498
|
|
248
|
+
pyglet/media/codecs/ffmpeg_lib/libavcodec.py,sha256=OfFCMK3KKFueje_dzav3BQw74ysalff12gHWh9Vpko0,23872
|
|
249
|
+
pyglet/media/codecs/ffmpeg_lib/libavformat.py,sha256=yq2plOGu1CaooChnvABEqC-XD4UbjysTnWY8MbBpCUo,15763
|
|
250
|
+
pyglet/media/codecs/ffmpeg_lib/libavutil.py,sha256=zWKL__B-KNhMlUxtS9jNKj6m-j8G__EHYGwQGQUSMZM,10467
|
|
251
|
+
pyglet/media/codecs/ffmpeg_lib/libswresample.py,sha256=Jaa6zG6yAab9uxg1r3BVUiDhc2FM0PhswwkUKJq5szw,2420
|
|
252
|
+
pyglet/media/codecs/ffmpeg_lib/libswscale.py,sha256=qthAjgfjqTM8EDFGMJenTUC6_a5YxWBmEWg-0yjRUKE,1553
|
|
253
|
+
pyglet/media/devices/__init__.py,sha256=X6cc8vMKg_HsVCmjqzamCgvNKqXiyLrjXpz-vnVxm-A,773
|
|
254
|
+
pyglet/media/devices/base.py,sha256=n3RxJD0_yc50juY0nuZ2eGLH0xG0pyn5giMZ9_RSBO8,3218
|
|
255
|
+
pyglet/media/devices/win32.py,sha256=a1wxD90RAsOQIe1FAu9q3DHGTqElZSZk83JxFHY4M58,12481
|
|
256
|
+
pyglet/media/drivers/__init__.py,sha256=E5J6lvK5QbuFS6IKZPkhNgsxNYbZQ1TBdhPbOvNQeYM,2629
|
|
257
|
+
pyglet/media/drivers/base.py,sha256=W0EzCcf48SXTVHHhBnILz6wZsM_3BOTa7G35U1GJIaA,18490
|
|
258
|
+
pyglet/media/drivers/listener.py,sha256=XYKlPPWMkJ5L_IPPNo4pL0k1wSZjkapBh7dAw822llk,2438
|
|
259
|
+
pyglet/media/drivers/directsound/__init__.py,sha256=4pZuMWsqb6WFQXH8lV-5XFb03KPL9J5jY3dZ_91nJsg,251
|
|
260
|
+
pyglet/media/drivers/directsound/adaptation.py,sha256=DFn1B-PKwTnTFfzmNjL7QsoUk_1oHJKsasX3wsHNnP8,12133
|
|
261
|
+
pyglet/media/drivers/directsound/exceptions.py,sha256=DNslGA8HwhO1ees5Rd4dpH-wtSTax2UtLPEUKyev2oo,325
|
|
262
|
+
pyglet/media/drivers/directsound/interface.py,sha256=4B9jEUSBr8aconkkn-q-0x7PeUsGDP8JqehyBSVfVWs,12858
|
|
263
|
+
pyglet/media/drivers/directsound/lib_dsound.py,sha256=2jH2uV_Ps5fyjY_VRyVT6buIUEjS-6lu84H5sSoy_dc,12713
|
|
264
|
+
pyglet/media/drivers/openal/__init__.py,sha256=DFBHwjW-CYF9tDDGIDIGriiuknwZdv6oqa203Upg_pM,321
|
|
265
|
+
pyglet/media/drivers/openal/adaptation.py,sha256=lhPwuHLY_KhVq8ndSCO4FIQ1eEWFUZEg18PjL5R-qPg,9241
|
|
266
|
+
pyglet/media/drivers/openal/interface.py,sha256=XbhcfRTsj4I7b0vMJrLGF_LpjK0-ttNe-FKCA_qP0Q0,16582
|
|
267
|
+
pyglet/media/drivers/openal/lib_alc.py,sha256=bIG8WSCWvHvAu_PmQcPExq9SGLXv9JkKjE0HoBGGv7Q,10833
|
|
268
|
+
pyglet/media/drivers/openal/lib_openal.py,sha256=2Z6ulaYjgP0Gucpg9Wj71b4OA5KZJv_QQ-MjpVYb-_k,26707
|
|
269
|
+
pyglet/media/drivers/pulse/__init__.py,sha256=mcF55yHTK2cU04h4P9JHblf_YrHo5p6fVOXZ9LHDhVU,241
|
|
270
|
+
pyglet/media/drivers/pulse/adaptation.py,sha256=JkZRQwgd4C5HtMVc4my5jh2RkN3NCYnPda4GsO4AARs,14127
|
|
271
|
+
pyglet/media/drivers/pulse/interface.py,sha256=dUN5FCdPTKo_h3AC-qykLvMh5tnSGSsfEsKVzRH11Ec,26864
|
|
272
|
+
pyglet/media/drivers/pulse/lib_pulseaudio.py,sha256=mdIbFBykSTpTJl_E8cATE0Ec8TYx0IiHxwEoGlM7a_I,125621
|
|
273
|
+
pyglet/media/drivers/pyodide_js/__init__.py,sha256=9uKi67JzNXnS1jxq1nNJB6BTZxhqehQxaABgmf0UBP4,128
|
|
274
|
+
pyglet/media/drivers/pyodide_js/adaptation.py,sha256=OYz7OCo0XCfzkHCT-1cIU3pvu5A_ewiEYvdXL0DewqM,9965
|
|
275
|
+
pyglet/media/drivers/silent/__init__.py,sha256=ll3SIdXcO5oBn7PolMNKJLPU3yQXQz6KOslCZXWokR8,127
|
|
276
|
+
pyglet/media/drivers/silent/adaptation.py,sha256=HGf4h3RiFExmdMIqgHMHPIH8ffrkZeCREL1RvfOiHQo,4080
|
|
277
|
+
pyglet/media/drivers/xaudio2/__init__.py,sha256=RipwpSVIsNEqgUYYFA0TbxHEBl41pre0XB4sFRQvBg8,128
|
|
278
|
+
pyglet/media/drivers/xaudio2/adaptation.py,sha256=go-s5skfGtYFktv58nBNtYc5OTRA5a4HG1d2Gfgvn9o,12784
|
|
279
|
+
pyglet/media/drivers/xaudio2/interface.py,sha256=TQw2K5YEymz62OYb79WkreuNNS9Ot1MDvpKrnWhTe_w,25222
|
|
280
|
+
pyglet/media/drivers/xaudio2/lib_xaudio2.py,sha256=OxFN0lDf1v-4eSRMDeU98ZyrunXGUBOCYwg34rvHGfA,27869
|
|
281
|
+
pyglet/model/__init__.py,sha256=wY6eh-ydYZPrXsLtKBzKG6DVt95xAddG8TRMUEgHj_g,14838
|
|
282
|
+
pyglet/model/codecs/__init__.py,sha256=7ezyORi1RBfH-KAmcrfHjNxe4LSTKJDpG4BXHJ-ghwU,1450
|
|
283
|
+
pyglet/model/codecs/base.py,sha256=hU-jR4NSoCfBxm1F2p9oTI_IEkAdBn4EWEIOE4XckkQ,4388
|
|
284
|
+
pyglet/model/codecs/gltf.py,sha256=NdmjSHBBjCuGa9TnRqKGUGbRSHE5ozaJB2Z9yyCZEsg,14148
|
|
285
|
+
pyglet/model/codecs/obj.py,sha256=OkBZ8jv0vczOPwDshffnEsDtruMP-EaVsB7z-HBQbm4,8877
|
|
286
|
+
pyglet/text/__init__.py,sha256=7DPDIs7oYMOEQw82q0RBbxlmMjKDBJZ5UyIasNx3U7o,20464
|
|
287
|
+
pyglet/text/caret.py,sha256=2vEIoAyutlmpjp5TUUKB5uhZxB45Fy83XZOJrbyE7uA,23808
|
|
288
|
+
pyglet/text/document.py,sha256=6O4XtKgcnWrYr9VLj6oS9EyPM1ErNtaNUsB-YPkleAg,26612
|
|
289
|
+
pyglet/text/runlist.py,sha256=mgHXjKOenggrw930LuaQ0694grAq9VCDyWo7Jm_tnTk,13601
|
|
290
|
+
pyglet/text/formats/__init__.py,sha256=hZVwM1nciPptXpawu9GplNI_XtUpWH3-AmCZLf2m_kI,24
|
|
291
|
+
pyglet/text/formats/attributed.py,sha256=VZ9jelMyFr1LJ2M-sgE5IeQJonHBPnaf749TEDC8uqM,2937
|
|
292
|
+
pyglet/text/formats/html.py,sha256=Ide7XO_4YH3OJr44Qm5Gb_quRVxfgeUuQVIytqlGWGw,12060
|
|
293
|
+
pyglet/text/formats/plaintext.py,sha256=xsh6fMs9FQZelPUiLu_pPp-K07r4jUJw0pYRskHeZQM,515
|
|
294
|
+
pyglet/text/formats/structured.py,sha256=IHd7E0S-xV9cc6eh1v1abcK1y8tc27lBKEYKG6jUEWI,10738
|
|
295
|
+
pyglet/text/layout/__init__.py,sha256=Jci9ZNX_gb7RLJvBkU53hz4rawYSbgduFKRXnjg_w4E,5875
|
|
296
|
+
pyglet/text/layout/base.py,sha256=3sPRM6rW5A6aS1fth63tYqLGjjlsjn23hagi1eCFfP4,73356
|
|
297
|
+
pyglet/text/layout/incremental.py,sha256=9Fk4Fp8Vft7Ig4vBh02Y3v4G_-weMK-7W2PEehAQHLE,36101
|
|
298
|
+
pyglet/text/layout/scrolling.py,sha256=QfktEU7_aAV9-q_H1-YieGkVk3Qg4fYN8xPjVgiS0lM,7010
|
|
299
|
+
pyglet/window/__init__.py,sha256=NphLOLKU_N-XvBasmVZTcwcjeeSFpiV0DKS_YXXGTX4,71583
|
|
300
|
+
pyglet/window/event.py,sha256=Be4We1jfM_q5uMIqTXQjT9UFMMXE-QTo_KDV_M020ZI,4265
|
|
301
|
+
pyglet/window/key.py,sha256=CGOECFoh1rSJTM6NkAij_jkFlgJlls17he8x4Xlb2x0,9562
|
|
302
|
+
pyglet/window/mouse.py,sha256=ttesClrCOjGVuvymBfF04Ku4DHFdw4jrnQblrRVcPO0,3220
|
|
303
|
+
pyglet/window/cocoa/__init__.py,sha256=gaop5JrHRsksiiNMVXpT2MYTypMcXYGkwfo-l6HLPoA,29402
|
|
304
|
+
pyglet/window/cocoa/pyglet_delegate.py,sha256=AUb8j2BEsXvaiWqlTnsa7SPxKOFRjPgdogNXvBqbm0U,6468
|
|
305
|
+
pyglet/window/cocoa/pyglet_textview.py,sha256=DbBZO2uaahx7NucGXY4YDIpvuDP6JOs3Z0l3ZZKCcLY,7983
|
|
306
|
+
pyglet/window/cocoa/pyglet_view.py,sha256=YrI1Ei-uGJqljXY7rdEDCBESz8bRWcXEMvLdPcbfZxU,15814
|
|
307
|
+
pyglet/window/cocoa/pyglet_window.py,sha256=ttcI6ox5ijDu-f1JJMAzdqK31kBv22iOQHbfBwu76nA,3627
|
|
308
|
+
pyglet/window/cocoa/systemcursor.py,sha256=-rMhvPH3DWl4gsSTCUbkn-yUnbyKM7JdQLfb5RKb8xM,775
|
|
309
|
+
pyglet/window/dialog/__init__.py,sha256=qokUv_EFsZCKZaHAe7dHIYxvuL22stqeAdlS2WGa930,7833
|
|
310
|
+
pyglet/window/dialog/base.py,sha256=sBWCrDpsS9R2lM40UC-BAmHRcvU_rHEj8byQKyj5ZW4,3731
|
|
311
|
+
pyglet/window/dialog/darwin.py,sha256=lWfxjp1djiK2rRe9GPEyk8bzUHBDvylZ6Wy2nz7QkS4,5243
|
|
312
|
+
pyglet/window/dialog/linux.py,sha256=L8PKu3-PfnS_6SWDQ_Bn7wipInvL1BmYLL77k1R-ulg,2711
|
|
313
|
+
pyglet/window/dialog/windows.py,sha256=8v17CCi2tQDT1cvgTXNKF7OcvJbcNrZLd7Qjz90XL88,5378
|
|
314
|
+
pyglet/window/emscripten/__init__.py,sha256=JnLrF22oKIUuqXL6haZQxhcbSw7DiKsexIlriU3F0-I,24988
|
|
315
|
+
pyglet/window/headless/__init__.py,sha256=rFg1dASjgO72uXdvns_R9nCSm7P5rKqR7lopHNIHWY4,3815
|
|
316
|
+
pyglet/window/wayland/__init__.py,sha256=k0er-wlroz6NEHyCgqyIumdeNZDEP1qelyWeBsSBPzE,14891
|
|
317
|
+
pyglet/window/win32/__init__.py,sha256=Z0goRzf3NZevKDAWMt6f5NfYdW0UPPNLcU48Nmo3rzA,58049
|
|
318
|
+
pyglet/window/xlib/__init__.py,sha256=NlWM-OhHbSbj-hqRfAqL3joyCd3n3cDBJKa5hByFKUg,72087
|
|
319
|
+
pyglet-3.0.dev1.dist-info/LICENSE,sha256=V-fuy2c8jUDPMZJjPEgH-6jIFoUymjfht2PhVW1d7TQ,1546
|
|
320
|
+
pyglet-3.0.dev1.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
321
|
+
pyglet-3.0.dev1.dist-info/METADATA,sha256=T97i2kSBZhrX-0skXRDaHESIghuB6TU358fJfFfMr8k,7653
|
|
322
|
+
pyglet-3.0.dev1.dist-info/RECORD,,
|
pyglet/gl/__init__.py
DELETED
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
"""OpenGL interface.
|
|
2
|
-
|
|
3
|
-
This package imports all OpenGL and registered OpenGL extension
|
|
4
|
-
functions. Functions have identical signatures to their C counterparts.
|
|
5
|
-
|
|
6
|
-
OpenGL is documented in full at the `OpenGL Reference Pages`_.
|
|
7
|
-
|
|
8
|
-
The `OpenGL Programming Guide`_, also known as "The Red Book", is a popular
|
|
9
|
-
reference manual organised by topic. It is available in digital and paper
|
|
10
|
-
editions.
|
|
11
|
-
|
|
12
|
-
.. _OpenGL Reference Pages: https://www.khronos.org/registry/OpenGL-Refpages/
|
|
13
|
-
.. _OpenGL Programming Guide: http://opengl-redbook.com/
|
|
14
|
-
|
|
15
|
-
The following subpackages are imported into this "mega" package already
|
|
16
|
-
(and so are available by importing ``pyglet.gl``):
|
|
17
|
-
|
|
18
|
-
``pyglet.gl.gl``
|
|
19
|
-
OpenGL
|
|
20
|
-
``pyglet.gl.gl.glext_arb``
|
|
21
|
-
ARB registered OpenGL extension functions
|
|
22
|
-
``pyglet.gl.gl.gl_compat``
|
|
23
|
-
Deprecated OpenGL extension functions.
|
|
24
|
-
|
|
25
|
-
These subpackages are also available, but are not imported into this namespace
|
|
26
|
-
by default:
|
|
27
|
-
|
|
28
|
-
``pyglet.gl.glext_nv``
|
|
29
|
-
nVidia OpenGL extension functions
|
|
30
|
-
``pyglet.gl.agl``
|
|
31
|
-
AGL (Mac OS X OpenGL context functions)
|
|
32
|
-
``pyglet.gl.glx``
|
|
33
|
-
GLX (Linux OpenGL context functions)
|
|
34
|
-
``pyglet.gl.glxext_arb``
|
|
35
|
-
ARB registered GLX extension functions
|
|
36
|
-
``pyglet.gl.glxext_nv``
|
|
37
|
-
nvidia GLX extension functions
|
|
38
|
-
``pyglet.gl.wgl``
|
|
39
|
-
WGL (Windows OpenGL context functions)
|
|
40
|
-
``pyglet.gl.wglext_arb``
|
|
41
|
-
ARB registered WGL extension functions
|
|
42
|
-
``pyglet.gl.wglext_nv``
|
|
43
|
-
nvidia WGL extension functions
|
|
44
|
-
|
|
45
|
-
The information modules are provided for convenience, and are documented below.
|
|
46
|
-
"""
|
|
47
|
-
from __future__ import annotations
|
|
48
|
-
|
|
49
|
-
import sys as _sys
|
|
50
|
-
|
|
51
|
-
import pyglet as _pyglet
|
|
52
|
-
from pyglet import compat_platform
|
|
53
|
-
from pyglet.gl.gl import * # Must always be imported before gl_info or bad things happen. # noqa: F403
|
|
54
|
-
from pyglet.gl import gl_info # noqa: F401
|
|
55
|
-
|
|
56
|
-
from pyglet.gl.gl_compat import GL_INTENSITY, GL_LUMINANCE
|
|
57
|
-
from pyglet.gl.lib import GLException # noqa: F401
|
|
58
|
-
from .gl import __all__ as _gl_all
|
|
59
|
-
|
|
60
|
-
from .base import DisplayConfig, Context, ObjectSpace # noqa: F401, TCH001
|
|
61
|
-
from typing import TYPE_CHECKING
|
|
62
|
-
|
|
63
|
-
if TYPE_CHECKING:
|
|
64
|
-
from pyglet.window import Window
|
|
65
|
-
|
|
66
|
-
_is_pyglet_doc_run = hasattr(_sys, "is_pyglet_doc_run") and _sys.is_pyglet_doc_run
|
|
67
|
-
|
|
68
|
-
#: The active OpenGL context.
|
|
69
|
-
#:
|
|
70
|
-
#: You can change the current context by calling `Context.set_current`;
|
|
71
|
-
#: do not modify this global.
|
|
72
|
-
#:
|
|
73
|
-
#: .. versionadded:: 1.1
|
|
74
|
-
current_context: Context | None = None
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
class ContextException(Exception):
|
|
78
|
-
pass
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
class ConfigException(Exception):
|
|
82
|
-
pass
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
if _pyglet.options['debug_texture']:
|
|
86
|
-
_debug_texture_total = 0
|
|
87
|
-
_debug_texture_sizes = {}
|
|
88
|
-
_debug_texture = None
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
def _debug_texture_alloc(texture, size):
|
|
92
|
-
global _debug_texture_total
|
|
93
|
-
|
|
94
|
-
_debug_texture_sizes[texture] = size
|
|
95
|
-
_debug_texture_total += size
|
|
96
|
-
|
|
97
|
-
print(f'{_debug_texture_total} (+{size})')
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
def _debug_texture_dealloc(texture):
|
|
101
|
-
global _debug_texture_total
|
|
102
|
-
|
|
103
|
-
size = _debug_texture_sizes[texture]
|
|
104
|
-
del _debug_texture_sizes[texture]
|
|
105
|
-
_debug_texture_total -= size
|
|
106
|
-
|
|
107
|
-
print(f'{_debug_texture_total} (-{size})')
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
_glBindTexture = glBindTexture
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
def glBindTexture(target, texture):
|
|
114
|
-
global _debug_texture
|
|
115
|
-
_debug_texture = texture
|
|
116
|
-
return _glBindTexture(target, texture)
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
_glTexImage2D = glTexImage2D
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
def glTexImage2D(target, level, internalformat, width, height, border,
|
|
123
|
-
format, type, pixels):
|
|
124
|
-
try:
|
|
125
|
-
_debug_texture_dealloc(_debug_texture)
|
|
126
|
-
except KeyError:
|
|
127
|
-
pass
|
|
128
|
-
|
|
129
|
-
if internalformat in (1, GL_ALPHA, GL_INTENSITY, GL_LUMINANCE):
|
|
130
|
-
depth = 1
|
|
131
|
-
elif internalformat in (2, GL_RGB16, GL_RGBA16):
|
|
132
|
-
depth = 2
|
|
133
|
-
elif internalformat in (3, GL_RGB):
|
|
134
|
-
depth = 3
|
|
135
|
-
else:
|
|
136
|
-
depth = 4 # Pretty crap assumption
|
|
137
|
-
size = (width + 2 * border) * (height + 2 * border) * depth
|
|
138
|
-
_debug_texture_alloc(_debug_texture, size)
|
|
139
|
-
|
|
140
|
-
return _glTexImage2D(target, level, internalformat, width, height, border, format, type, pixels)
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
_glDeleteTextures = glDeleteTextures
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
def glDeleteTextures(n, textures):
|
|
147
|
-
if not hasattr(textures, '__len__'):
|
|
148
|
-
_debug_texture_dealloc(textures.value)
|
|
149
|
-
else:
|
|
150
|
-
for i in range(n):
|
|
151
|
-
_debug_texture_dealloc(textures[i].value)
|
|
152
|
-
|
|
153
|
-
return _glDeleteTextures(n, textures)
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
def _create_shadow_window() -> None:
|
|
157
|
-
global _shadow_window # noqa: PLW0603
|
|
158
|
-
|
|
159
|
-
import pyglet
|
|
160
|
-
if not pyglet.options['shadow_window'] or _is_pyglet_doc_run:
|
|
161
|
-
return
|
|
162
|
-
|
|
163
|
-
from pyglet.window import Window
|
|
164
|
-
|
|
165
|
-
class ShadowWindow(Window):
|
|
166
|
-
_shadow = True
|
|
167
|
-
def __init__(self) -> None:
|
|
168
|
-
super().__init__(width=1, height=1, visible=False)
|
|
169
|
-
|
|
170
|
-
def _create_projection(self) -> None:
|
|
171
|
-
"""Shadow window does not need a projection."""
|
|
172
|
-
|
|
173
|
-
def _on_internal_resize(self, width: int, height: int) -> None:
|
|
174
|
-
"""No projection and not required."""
|
|
175
|
-
|
|
176
|
-
def _on_internal_scale(self, scale: float, dpi: int) -> None:
|
|
177
|
-
"""No projection and not required."""
|
|
178
|
-
|
|
179
|
-
_shadow_window = ShadowWindow()
|
|
180
|
-
_shadow_window.switch_to()
|
|
181
|
-
|
|
182
|
-
from pyglet import app
|
|
183
|
-
app.windows.remove(_shadow_window)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
if _is_pyglet_doc_run:
|
|
187
|
-
from .base import Config
|
|
188
|
-
|
|
189
|
-
elif _pyglet.options['headless']:
|
|
190
|
-
from .headless import HeadlessConfig as Config
|
|
191
|
-
elif compat_platform in ('win32', 'cygwin'):
|
|
192
|
-
from .win32 import Win32Config as Config
|
|
193
|
-
elif compat_platform.startswith('linux'):
|
|
194
|
-
from .xlib import XlibConfig as Config
|
|
195
|
-
elif compat_platform == 'darwin':
|
|
196
|
-
from .cocoa import CocoaConfig as Config
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
_shadow_window: Window | None = None
|
|
200
|
-
|
|
201
|
-
# Import pyglet.window now if it isn't currently being imported (this creates the shadow window).
|
|
202
|
-
if not _is_pyglet_doc_run and 'pyglet.window' not in _sys.modules and _pyglet.options['shadow_window']:
|
|
203
|
-
# trickery is for circular import
|
|
204
|
-
_pyglet.gl = _sys.modules[__name__]
|
|
205
|
-
import pyglet.window # noqa: F401
|
|
206
|
-
|
|
207
|
-
__all__ = ['Config', 'GLException', 'gl_info']
|
|
208
|
-
__all__.extend(_gl_all)
|