pyglet 2.1.11__py3-none-any.whl → 2.1.13__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 CHANGED
@@ -15,7 +15,7 @@ if TYPE_CHECKING:
15
15
  from typing import Any, Callable, ItemsView, Sized
16
16
 
17
17
  #: The release version
18
- version = '2.1.11'
18
+ version = '2.1.13'
19
19
  __version__ = version
20
20
 
21
21
  MIN_PYTHON_VERSION = 3, 8
pyglet/app/__init__.py CHANGED
@@ -47,8 +47,10 @@ if _is_pyglet_doc_run:
47
47
  else:
48
48
  if compat_platform == 'darwin':
49
49
  from pyglet.app.cocoa import CocoaPlatformEventLoop as PlatformEventLoop
50
+ from pyglet.libs.darwin.cocoapy.runtime import get_chip_model
50
51
 
51
- if platform.machine() == 'arm64' or pyglet.options["osx_alt_loop"]:
52
+ # Use alternate loop only if forced, or using an M1 chip.
53
+ if (platform.machine() == 'arm64' and "M1" in get_chip_model()) or pyglet.options.osx_alt_loop:
52
54
  from pyglet.app.cocoa import CocoaAlternateEventLoop as EventLoop
53
55
  elif compat_platform in ('win32', 'cygwin'):
54
56
  from pyglet.app.win32 import Win32EventLoop as PlatformEventLoop
pyglet/display/win32.py CHANGED
@@ -4,7 +4,7 @@ import ctypes
4
4
  from ctypes import byref, sizeof
5
5
  from typing import TYPE_CHECKING
6
6
 
7
- from pyglet.libs.win32 import _gdi32, _shcore, _user32
7
+ from pyglet.libs.win32 import _gdi32, _user32
8
8
  from pyglet.libs.win32.constants import (
9
9
  CDS_FULLSCREEN,
10
10
  DISP_CHANGE_SUCCESSFUL,
@@ -37,6 +37,9 @@ from pyglet.libs.win32.types import (
37
37
 
38
38
  from .base import Canvas, Display, Screen, ScreenMode
39
39
 
40
+ if WINDOWS_8_1_OR_GREATER:
41
+ from pyglet.libs.win32 import _shcore
42
+
40
43
  if TYPE_CHECKING:
41
44
  from ctypes.wintypes import HDC, HMONITOR, LPARAM, LPRECT
42
45
 
pyglet/graphics/shader.py CHANGED
@@ -120,6 +120,11 @@ _uniform_setters: dict[int, tuple[GLDataType, GLFunc, GLFunc, int]] = {
120
120
  gl.GL_INT_VEC3: (gl.GLint, gl.glUniform3iv, gl.glProgramUniform3iv, 3),
121
121
  gl.GL_INT_VEC4: (gl.GLint, gl.glUniform4iv, gl.glProgramUniform4iv, 4),
122
122
 
123
+ gl.GL_UNSIGNED_INT: (gl.GLuint, gl.glUniform1uiv, gl.glProgramUniform1uiv, 1),
124
+ gl.GL_UNSIGNED_INT_VEC2: (gl.GLuint, gl.glUniform2uiv, gl.glProgramUniform2uiv, 2),
125
+ gl.GL_UNSIGNED_INT_VEC3: (gl.GLuint, gl.glUniform3uiv, gl.glProgramUniform3uiv, 3),
126
+ gl.GL_UNSIGNED_INT_VEC4: (gl.GLuint, gl.glUniform4uiv, gl.glProgramUniform4uiv, 4),
127
+
123
128
  gl.GL_FLOAT: (gl.GLfloat, gl.glUniform1fv, gl.glProgramUniform1fv, 1),
124
129
  gl.GL_FLOAT_VEC2: (gl.GLfloat, gl.glUniform2fv, gl.glProgramUniform2fv, 2),
125
130
  gl.GL_FLOAT_VEC3: (gl.GLfloat, gl.glUniform3fv, gl.glProgramUniform3fv, 3),
pyglet/gui/widgets.py CHANGED
@@ -265,7 +265,7 @@ class PushButton(WidgetBase):
265
265
  return
266
266
  self._sprite.image = self._unpressed_img
267
267
  self._pressed = False
268
- self.dispatch_event('on_release')
268
+ self.dispatch_event('on_release', self)
269
269
 
270
270
  def on_mouse_motion(self, x: int, y: int, dx: int, dy: int) -> None:
271
271
  if not self.enabled or self._pressed:
@@ -66,6 +66,34 @@ libc = cdll.LoadLibrary(util.find_library('c'))
66
66
  libc.free.restype = None
67
67
  libc.free.argtypes = [c_void_p]
68
68
 
69
+ libc.sysctlbyname.argtypes = [c_char_p, c_void_p, POINTER(c_size_t), c_void_p, c_size_t]
70
+ libc.sysctlbyname.restype = c_int
71
+
72
+ def _sysctl_get(name: str) -> str:
73
+ name_bytes = name.encode("utf-8")
74
+
75
+ size = c_size_t()
76
+ # Gets buffer size.
77
+ libc.sysctlbyname(name_bytes, None, byref(size), None, 0)
78
+
79
+ buf = create_string_buffer(size.value)
80
+ libc.sysctlbyname(name_bytes, buf, byref(size), None, 0)
81
+ return buf.value.decode("utf-8")
82
+
83
+ def get_chip_model() -> str:
84
+ """Return Apple chip model name.
85
+
86
+ For example: "Apple M2"
87
+ """
88
+ try:
89
+ # Newer field.
90
+ return _sysctl_get("machdep.cpu.brand_string")
91
+ except Exception:
92
+ try:
93
+ return _sysctl_get("hw.model")
94
+ except Exception:
95
+ return "Unknown"
96
+
69
97
  ######################################################################
70
98
 
71
99
  # BOOL class_addIvar(Class cls, const char *name, size_t size, uint8_t alignment, const char *types)
@@ -22,7 +22,9 @@ _dwmapi = DebugLibrary('dwmapi')
22
22
  _shell32 = DebugLibrary('shell32')
23
23
  _ole32 = DebugLibrary('ole32')
24
24
  _oleaut32 = DebugLibrary('oleaut32')
25
- _shcore = DebugLibrary('shcore')
25
+
26
+ if constants.WINDOWS_8_1_OR_GREATER:
27
+ _shcore = DebugLibrary('shcore')
26
28
 
27
29
  # _gdi32
28
30
  _gdi32.AddFontMemResourceEx.restype = HANDLE
pyglet/shapes.py CHANGED
@@ -864,7 +864,8 @@ class Arc(ShapeBase):
864
864
  self._num_verts, self._draw_mode, self._batch, self._group,
865
865
  position=('f', self._get_vertices()),
866
866
  colors=('Bn', self._rgba * self._num_verts),
867
- translation=('f', (self._x, self._y) * self._num_verts))
867
+ translation=('f', (self._x, self._y) * self._num_verts),
868
+ rotation=('f', (self._rotation,) * self._num_verts))
868
869
 
869
870
  def _get_vertices(self) -> Sequence[float]:
870
871
  if not self._visible:
@@ -1034,7 +1035,8 @@ class BezierCurve(ShapeBase):
1034
1035
  self._num_verts, self._draw_mode, self._batch, self._group,
1035
1036
  position=('f', self._get_vertices()),
1036
1037
  colors=('Bn', self._rgba * self._num_verts),
1037
- translation=('f', (self._x, self._y) * self._num_verts))
1038
+ translation=('f', (self._x, self._y) * self._num_verts),
1039
+ rotation=('f', (self._rotation,) * self._num_verts))
1038
1040
 
1039
1041
  def _get_vertices(self) -> Sequence[float]:
1040
1042
  if not self._visible:
@@ -1171,7 +1173,8 @@ class Circle(ShapeBase):
1171
1173
  self._segments * 3, self._draw_mode, self._batch, self._group,
1172
1174
  position=('f', self._get_vertices()),
1173
1175
  colors=('Bn', self._rgba * self._num_verts),
1174
- translation=('f', (self._x, self._y) * self._num_verts))
1176
+ translation=('f', (self._x, self._y) * self._num_verts),
1177
+ rotation=('f', (self._rotation,) * self._num_verts))
1175
1178
 
1176
1179
  def _get_vertices(self) -> Sequence[float]:
1177
1180
  if not self._visible:
@@ -1289,7 +1292,8 @@ class Ellipse(ShapeBase):
1289
1292
  self._segments * 3, self._draw_mode, self._batch, self._group,
1290
1293
  position=('f', self._get_vertices()),
1291
1294
  colors=('Bn', self._rgba * self._num_verts),
1292
- translation=('f', (self._x, self._y) * self._num_verts))
1295
+ translation=('f', (self._x, self._y) * self._num_verts),
1296
+ rotation=('f', (self._rotation,) * self._num_verts))
1293
1297
 
1294
1298
  def _get_vertices(self) -> Sequence[float]:
1295
1299
  if not self._visible:
@@ -1410,19 +1414,30 @@ class Sector(ShapeBase):
1410
1414
  def __contains__(self, point: tuple[float, float]) -> bool:
1411
1415
  assert len(point) == 2
1412
1416
  point = _rotate_point((self._x, self._y), point, math.radians(self._rotation))
1413
- angle = math.atan2(point[1] - self._y + self._anchor_y, point[0] - self._x + self._anchor_x)
1414
- if angle < 0:
1415
- angle += 2 * math.pi
1416
- if self._start_angle < angle < self._start_angle + self._angle:
1417
- return math.dist((self._x - self._anchor_x, self._y - self._anchor_y), point) < self._radius
1418
- return False
1417
+ if math.dist((self._x - self._anchor_x, self._y - self._anchor_y), point) > self._radius:
1418
+ return False
1419
+ angle = math.degrees(math.atan2(point[1] - self._y + self._anchor_y, point[0] - self._x + self._anchor_x))
1420
+ angle = angle % 360
1421
+ start_angle = self._start_angle % 360
1422
+ end_angle = (start_angle + self._angle) % 360
1423
+ if self._angle >= 0:
1424
+ if start_angle <= end_angle:
1425
+ return start_angle <= angle <= end_angle
1426
+ else:
1427
+ return angle >= start_angle or angle <= end_angle
1428
+ else:
1429
+ if end_angle <= start_angle:
1430
+ return end_angle <= angle <= start_angle
1431
+ else:
1432
+ return angle >= end_angle or angle <= start_angle
1419
1433
 
1420
1434
  def _create_vertex_list(self) -> None:
1421
1435
  self._vertex_list = self._program.vertex_list(
1422
1436
  self._num_verts, self._draw_mode, self._batch, self._group,
1423
1437
  position=('f', self._get_vertices()),
1424
1438
  colors=('Bn', self._rgba * self._num_verts),
1425
- translation=('f', (self._x, self._y) * self._num_verts))
1439
+ translation=('f', (self._x, self._y) * self._num_verts),
1440
+ rotation=('f', (self._rotation,) * self._num_verts))
1426
1441
 
1427
1442
  def _get_vertices(self) -> Sequence[float]:
1428
1443
  if not self._visible:
@@ -1432,7 +1447,7 @@ class Sector(ShapeBase):
1432
1447
  y = -self._anchor_y
1433
1448
  r = self._radius
1434
1449
  segment_radians = math.radians(self._angle) / self._segments
1435
- start_radians = math.radians(self._start_angle - self._rotation)
1450
+ start_radians = math.radians(self._start_angle)
1436
1451
 
1437
1452
  # Calculate the outer points of the sector.
1438
1453
  points = [(x + (r * math.cos((i * segment_radians) + start_radians)),
@@ -1564,7 +1579,8 @@ class Line(ShapeBase):
1564
1579
  6, self._draw_mode, self._batch, self._group,
1565
1580
  position=('f', self._get_vertices()),
1566
1581
  colors=('Bn', self._rgba * self._num_verts),
1567
- translation=('f', (self._x, self._y) * self._num_verts))
1582
+ translation=('f', (self._x, self._y) * self._num_verts),
1583
+ rotation=('f', (self._rotation,) * self._num_verts))
1568
1584
 
1569
1585
  def _get_vertices(self) -> Sequence[float]:
1570
1586
  if not self._visible:
@@ -1690,7 +1706,8 @@ class Rectangle(ShapeBase):
1690
1706
  6, self._draw_mode, self._batch, self._group,
1691
1707
  position=('f', self._get_vertices()),
1692
1708
  colors=('Bn', self._rgba * self._num_verts),
1693
- translation=('f', (self._x, self._y) * self._num_verts))
1709
+ translation=('f', (self._x, self._y) * self._num_verts),
1710
+ rotation=('f', (self._rotation,) * self._num_verts))
1694
1711
 
1695
1712
  def _get_vertices(self) -> Sequence[float]:
1696
1713
  if not self._visible:
@@ -1833,7 +1850,8 @@ class BorderedRectangle(ShapeBase):
1833
1850
  8, self._draw_mode, indices, self._batch, self._group,
1834
1851
  position=('f', self._get_vertices()),
1835
1852
  colors=('Bn', self._rgba * 4 + self._border_rgba * 4),
1836
- translation=('f', (self._x, self._y) * self._num_verts))
1853
+ translation=('f', (self._x, self._y) * self._num_verts),
1854
+ rotation=('f', (self._rotation,) * self._num_verts))
1837
1855
 
1838
1856
  def _update_color(self) -> None:
1839
1857
  self._vertex_list.colors[:] = self._rgba * 4 + self._border_rgba * 4
@@ -2047,7 +2065,8 @@ class Box(ShapeBase):
2047
2065
  self._num_verts, self._draw_mode, indices, self._batch, self._group,
2048
2066
  position=('f', self._get_vertices()),
2049
2067
  colors=('Bn', self._rgba * self._num_verts),
2050
- translation=('f', (self._x, self._y) * self._num_verts))
2068
+ translation=('f', (self._x, self._y) * self._num_verts),
2069
+ rotation=('f', (self._rotation,) * self._num_verts))
2051
2070
 
2052
2071
  def _update_color(self):
2053
2072
  self._vertex_list.colors[:] = self._rgba * self._num_verts
@@ -2226,7 +2245,8 @@ class RoundedRectangle(pyglet.shapes.ShapeBase):
2226
2245
  self._num_verts, self._draw_mode, self._batch, self._group,
2227
2246
  position=('f', self._get_vertices()),
2228
2247
  colors=('Bn', self._rgba * self._num_verts),
2229
- translation=('f', (self._x, self._y) * self._num_verts))
2248
+ translation=('f', (self._x, self._y) * self._num_verts),
2249
+ rotation=('f', (self._rotation,) * self._num_verts))
2230
2250
 
2231
2251
  def _get_vertices(self) -> Sequence[float]:
2232
2252
  if not self._visible:
@@ -2377,7 +2397,8 @@ class Triangle(ShapeBase):
2377
2397
  3, self._draw_mode, self._batch, self._group,
2378
2398
  position=('f', self._get_vertices()),
2379
2399
  colors=('Bn', self._rgba * self._num_verts),
2380
- translation=('f', (self._x, self._y) * self._num_verts))
2400
+ translation=('f', (self._x, self._y) * self._num_verts),
2401
+ rotation=('f', (self._rotation,) * self._num_verts))
2381
2402
 
2382
2403
  def _get_vertices(self) -> Sequence[float]:
2383
2404
  if not self._visible:
@@ -2513,8 +2534,8 @@ class Star(ShapeBase):
2513
2534
  self._num_verts, self._draw_mode, self._batch, self._group,
2514
2535
  position=('f', self._get_vertices()),
2515
2536
  colors=('Bn', self._rgba * self._num_verts),
2516
- rotation=('f', (self._rotation,) * self._num_verts),
2517
- translation=('f', (self._x, self._y) * self._num_verts))
2537
+ translation=('f', (self._x, self._y) * self._num_verts),
2538
+ rotation=('f', (self._rotation,) * self._num_verts))
2518
2539
 
2519
2540
  def _get_vertices(self) -> Sequence[float]:
2520
2541
  if not self._visible:
@@ -2638,7 +2659,8 @@ class Polygon(ShapeBase):
2638
2659
  self._batch, self._group,
2639
2660
  position=('f', vertices),
2640
2661
  colors=('Bn', self._rgba * self._num_verts),
2641
- translation=('f', (self._x, self._y) * self._num_verts))
2662
+ translation=('f', (self._x, self._y) * self._num_verts),
2663
+ rotation=('f', (self._rotation,) * self._num_verts))
2642
2664
 
2643
2665
  def _get_vertices(self) -> Sequence[float]:
2644
2666
  if not self._visible:
@@ -2723,7 +2745,8 @@ class MultiLine(ShapeBase):
2723
2745
  self._num_verts, self._draw_mode, self._batch, self._group,
2724
2746
  position=('f', self._get_vertices()),
2725
2747
  colors=('Bn', self._rgba * self._num_verts),
2726
- translation=('f', (self._x, self._y) * self._num_verts))
2748
+ translation=('f', (self._x, self._y) * self._num_verts),
2749
+ rotation=('f', (self._rotation,) * self._num_verts))
2727
2750
 
2728
2751
  def _get_vertices(self) -> Sequence[float]:
2729
2752
  if not self._visible:
@@ -411,7 +411,7 @@ class Win32Window(BaseWindow):
411
411
  def flip(self) -> None:
412
412
  self.draw_mouse_cursor()
413
413
 
414
- if not self._fullscreen and (self._always_dwm or self._dwm_composition_enabled()) and self._interval:
414
+ if not self._fullscreen and not self._always_dwm and self._dwm_composition_enabled() and self._interval:
415
415
  _dwmapi.DwmFlush()
416
416
 
417
417
  self.context.flip()
@@ -1,10 +1,11 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: pyglet
3
- Version: 2.1.11
3
+ Version: 2.1.13
4
4
  Summary: pyglet is a cross-platform games and multimedia package.
5
5
  Author-email: Alex Holkner & contributors <Alex.Holkner@gmail.com>
6
6
  Requires-Python: >=3.8
7
7
  Description-Content-Type: text/markdown
8
+ License-File: LICENSE
8
9
  Project-URL: Home, https://pyglet.org
9
10
 
10
11
  [![pypi](https://badge.fury.io/py/pyglet.svg)](https://pypi.python.org/pypi/pyglet) [![rtd](https://readthedocs.org/projects/pyglet/badge/?version=latest)](https://pyglet.readthedocs.io) [![PyTest](https://github.com/pyglet/pyglet/actions/workflows/unittests.yml/badge.svg)](https://github.com/pyglet/pyglet/actions/workflows/unittests.yml)
@@ -1,4 +1,4 @@
1
- pyglet/__init__.py,sha256=pHRsEVzn0TCFUSfSRPeMkpAqhbsOkiz9f2Zb5QXMGpc,21155
1
+ pyglet/__init__.py,sha256=zUxv--HVC1haqqlM68yMJDA36TPqnn2rwq6uHWPCa7c,21155
2
2
  pyglet/__init__.pyi,sha256=g-eSsTUa4WDTqTULiN7cRqagvW58NGCPLj9sabXRFjo,2005
3
3
  pyglet/clock.py,sha256=ZiYHckYRIUKuN1XmywQc3Dastd7O40Lw2XeMjC3iMtk,21892
4
4
  pyglet/customtypes.py,sha256=e9AB-8WPPhhZXqfDEf4r2Lv0vAQUBjwig5EBejBDz0k,608
@@ -8,10 +8,10 @@ pyglet/lib.py,sha256=Mj1W_KDmUQXMg1iPLrM0pIIHDyWPO38J6qvoU_hXKjc,12013
8
8
  pyglet/math.py,sha256=lMCspxzd_pOeLQev5HAA92v8nYFPfGjfK-mbO6iHK3E,56117
9
9
  pyglet/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  pyglet/resource.py,sha256=EknGIAxDuc8prrGd5faOM4MNPT2q6NN4r3KQlrRg2dM,29374
11
- pyglet/shapes.py,sha256=KRJz1lLN_jJXBYuW3AWVazbAILvHkJpVnxuo0Dmq_Jc,97445
11
+ pyglet/shapes.py,sha256=itBnLMIiZoavXFODGcfGWAdFToJoM6-bjOe_jeaB0kg,98692
12
12
  pyglet/sprite.py,sha256=DWMiCG1wO5ySEe_Wn7pPzgCOWiG1NceodtViD4nBbLg,28701
13
13
  pyglet/util.py,sha256=OPu-Lw5Rxu1NMcsXBSM3Y-_3r2J09OjmdfUUAqSWvfg,8647
14
- pyglet/app/__init__.py,sha256=Cc21DTHddyf-YaTvwiZ5y6iKmrnEgyyVAdjVBAbiw5Y,2879
14
+ pyglet/app/__init__.py,sha256=AzV-eZLCSGJgqx8GEuOrOrJUtcUBBLHbw5oyyyni7e0,3043
15
15
  pyglet/app/base.py,sha256=-rs9nvLoizNvbQfKQ0OGAnbDShpjnt6pAW0EFHLY9c4,11596
16
16
  pyglet/app/cocoa.py,sha256=NUy06NCLppmM9F0NX7kmKEL5sMMeq-Ia6f00lCAIxiE,10850
17
17
  pyglet/app/win32.py,sha256=252RfeIBB9TtytMf1bd6Zc1FDF0W3bukCJAlqfP4ioM,4340
@@ -21,7 +21,7 @@ pyglet/display/__init__.pyi,sha256=JRd3vFMahd1YC3r-uPgr99V9yAmiut1QZXKMFmstg5o,6
21
21
  pyglet/display/base.py,sha256=o8TYTl1J4zdy4pRJy9HEz4sOLqmdVMhNRFcrTJKP4U8,10142
22
22
  pyglet/display/cocoa.py,sha256=mW3Npw4PjeH29xnAuww6pRToO3Zh4v_xWTEVKubqIAA,6391
23
23
  pyglet/display/headless.py,sha256=LwS0dHee0Y6oxPHidMvDVhIFqCDoBwNI0eQdXQgvtpE,2491
24
- pyglet/display/win32.py,sha256=BqlRbIcDrgavU7pKTCn2bAn3U5sHU0mUpoiCjxPLyBw,9449
24
+ pyglet/display/win32.py,sha256=JJwnVkxrgZQJZh0cjimL0Z8h8AEL8BLznDQ7QYAPYRg,9510
25
25
  pyglet/display/xlib.py,sha256=6_SjJuqgDesW_jqwrQj7fjX3Csm8bVItnfBUxXds6BY,17264
26
26
  pyglet/display/xlib_vidmoderestore.py,sha256=fkcVbCvwQ65UDvAxaIZb3JV_bAWONVgw7l-6UJhEXTs,5663
27
27
  pyglet/experimental/README.md,sha256=bipJa3Y-kpEu9Uf_HNZJR00AAbfpUyGAKGEFdRY8YsI,222
@@ -77,14 +77,14 @@ pyglet/gl/xlib.py,sha256=q6BNLJ9lujt3P-0xh3CAvJHCFERAuLSUnXOgeS4jZhY,11357
77
77
  pyglet/graphics/__init__.py,sha256=O4O7fCQBI7qPReI8tUwLwArJHTWcoE1c_SotlHyUb2A,27940
78
78
  pyglet/graphics/allocation.py,sha256=0MTwkK7-00UDs2xl6Te7cf0ljC2mmsOQMbx0zKZCJOU,12430
79
79
  pyglet/graphics/instance.py,sha256=pzIaxO0EZCeoQDMR-qzjo4ahwfcbt3dDZm9UinYpZo0,2202
80
- pyglet/graphics/shader.py,sha256=kKJj6qkM8hMte6raCXlWcxKg8Zw6efcj9RZnPaLYU2g,66251
80
+ pyglet/graphics/shader.py,sha256=O7H_Nu6CgMNCqKK3UUS4MQs9hJAO-r65gH-qALE-ftI,66604
81
81
  pyglet/graphics/vertexarray.py,sha256=BWJFvP79JHpKwY91mrkjjhlbK3g87nIpMbCsc4FCcEg,1371
82
82
  pyglet/graphics/vertexbuffer.py,sha256=SbtT2cNSXwPMlQRGf2DxTxZCEyj0AjEEDLLdho-ojG8,15284
83
83
  pyglet/graphics/vertexdomain.py,sha256=Y4tAi26ABf5kLBGJ0QDvTVeWEL2vSN4HuIeS5svZjsg,32764
84
84
  pyglet/gui/__init__.py,sha256=vW9yvUBoKz6nG-VpyIYwHMmq_y_2LWAZvFW9LYQALog,77
85
85
  pyglet/gui/frame.py,sha256=R9QXswxNAC1tUqB7OA2tt6jATqjghgjRYeZ5WyHoN1A,8413
86
86
  pyglet/gui/ninepatch.py,sha256=f3iOQr6GOhoCUCIcwltsqrEILZz-BhKwnGr9rcsfohM,11376
87
- pyglet/gui/widgets.py,sha256=FBSsZRgOJrW-9kRGNtYrCdqed1zkGIFWmd-H0aZXK_4,20698
87
+ pyglet/gui/widgets.py,sha256=WegDh_TadylnchR9BgIS2ZzxfjpjwN1nWIzxrYw6a6o,20704
88
88
  pyglet/image/__init__.py,sha256=1Axruxq_hul8RXY3Pxp5_JNhuVxbtJdivGfMKPdku0E,83852
89
89
  pyglet/image/animation.py,sha256=ThMlyHFlqQkCRh7WdlCRy-uhMN62rFiME_qSxBUaEB4,5564
90
90
  pyglet/image/atlas.py,sha256=svY5NWVVAjIhtGEeAJS_4PcLtg8QctPIBrpa_4C69KM,9913
@@ -124,7 +124,7 @@ pyglet/libs/darwin/quartzkey.py,sha256=FhwLyotAdlhJIvmGX1JNPkB0kxPhedRb-9NeRh_HT
124
124
  pyglet/libs/darwin/cocoapy/__init__.py,sha256=LvkMAtOc0SGfyitALT9FdCTUvZ6dNzcFF7kDyrhu6GY,1798
125
125
  pyglet/libs/darwin/cocoapy/cocoalibs.py,sha256=GLr7LRQTxQq3RCGeHlSplPmq3tGjUVsr-kS2fC9Ax00,26062
126
126
  pyglet/libs/darwin/cocoapy/cocoatypes.py,sha256=UNymqQdVNrq7T6jIupCgRgoxgm51hhQW-R42Y-tRP00,2629
127
- pyglet/libs/darwin/cocoapy/runtime.py,sha256=KaI64id6cESiJ40SxZHfP5YOVHw82CHMGCzNPzUSRiA,65492
127
+ pyglet/libs/darwin/cocoapy/runtime.py,sha256=GgG2epgsCpEAA2hFjZKZ_aX-wxRFes8DguCZ3-waRzU,66265
128
128
  pyglet/libs/egl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
129
  pyglet/libs/egl/egl.py,sha256=sfSx2puVsMJDIY_xH9EbadsG3cCpsNUN7V2UgebUzvk,29920
130
130
  pyglet/libs/egl/eglext.py,sha256=NPqhL-GQK1Y5cHLwXSNpyWEqWhSgqyxc3vgk374-D0s,859
@@ -132,7 +132,7 @@ pyglet/libs/egl/lib.py,sha256=IdQfLfRPbTckgNBEIUumdmEQ6iSWiy1nhTnkTTzaZ6M,893
132
132
  pyglet/libs/wayland/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
133
  pyglet/libs/wayland/gbm.py,sha256=iv6IKaB_U9t3s8njo0zy29rksbFPKEYlmGjF7wHjYr0,13388
134
134
  pyglet/libs/wayland/xkbcommon.py,sha256=GCQ2mONKCi8MPwNfeL8t5JdszEoYhvEqrPUGDFE30xQ,20657
135
- pyglet/libs/win32/__init__.py,sha256=FKb-ylogLYxyYZUO48SxMKB3ASjbDsYQpi4t4Wj6dRY,15085
135
+ pyglet/libs/win32/__init__.py,sha256=oPvQ9y9V-9EZE39cLGNowgrfpkNdOi1gecgLNH9C4RI,15127
136
136
  pyglet/libs/win32/com.py,sha256=E4lzOzkmPRbV0F6Hj1MH_PQK46N_-USaOjPJbjgrXpM,17607
137
137
  pyglet/libs/win32/constants.py,sha256=gL787XYVx2d63ue5dVu1HXCONfZc64yUiRFihpD3P9M,121484
138
138
  pyglet/libs/win32/context_managers.py,sha256=pNCpws8Xc-HP19jC42gtWSdC9m1s6sP8H-0mFyiEz0A,1433
@@ -226,9 +226,9 @@ pyglet/window/cocoa/pyglet_view.py,sha256=ZiWmWhjI4KWt1Gm2vlD1G2HrN0hBE-hWmFV8o7
226
226
  pyglet/window/cocoa/pyglet_window.py,sha256=ttcI6ox5ijDu-f1JJMAzdqK31kBv22iOQHbfBwu76nA,3627
227
227
  pyglet/window/cocoa/systemcursor.py,sha256=-rMhvPH3DWl4gsSTCUbkn-yUnbyKM7JdQLfb5RKb8xM,775
228
228
  pyglet/window/headless/__init__.py,sha256=QT3vdaa8qIJVm9B8u17c9-agIG_wrbAIPExNdIFuNjI,3254
229
- pyglet/window/win32/__init__.py,sha256=xKwhvZA0KEMVo3ytgaTh30GvIAlLCXF4N8plp7nRFJk,55907
229
+ pyglet/window/win32/__init__.py,sha256=rmxohCsReTiEbMmegLxjvzH8NnERbd2jbvdz_zbzCqA,55910
230
230
  pyglet/window/xlib/__init__.py,sha256=_SmSwQlhiYx37P-jMR3WVZDDQV9A3O6qFNvPrzSDfwE,70725
231
- pyglet-2.1.11.dist-info/LICENSE,sha256=V-fuy2c8jUDPMZJjPEgH-6jIFoUymjfht2PhVW1d7TQ,1546
232
- pyglet-2.1.11.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
233
- pyglet-2.1.11.dist-info/METADATA,sha256=AnFcUdJIQxNtv8ZBlowD52UR1bWSCEK7H4nzp_-8Sdo,7651
234
- pyglet-2.1.11.dist-info/RECORD,,
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,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.10.1
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any