pyglet 2.1.2__py3-none-any.whl → 2.1.4__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.
Files changed (74) hide show
  1. pyglet/__init__.py +21 -9
  2. pyglet/__init__.pyi +3 -1
  3. pyglet/app/cocoa.py +6 -3
  4. pyglet/app/xlib.py +1 -1
  5. pyglet/display/cocoa.py +2 -2
  6. pyglet/display/win32.py +17 -18
  7. pyglet/display/xlib.py +2 -2
  8. pyglet/display/xlib_vidmoderestore.py +1 -1
  9. pyglet/extlibs/earcut.py +2 -2
  10. pyglet/font/__init__.py +3 -3
  11. pyglet/font/base.py +118 -51
  12. pyglet/font/dwrite/__init__.py +1381 -0
  13. pyglet/font/dwrite/d2d1_lib.py +637 -0
  14. pyglet/font/dwrite/d2d1_types_lib.py +60 -0
  15. pyglet/font/dwrite/dwrite_lib.py +1577 -0
  16. pyglet/font/fontconfig.py +79 -16
  17. pyglet/font/freetype.py +252 -77
  18. pyglet/font/freetype_lib.py +234 -125
  19. pyglet/font/harfbuzz/__init__.py +275 -0
  20. pyglet/font/harfbuzz/harfbuzz_lib.py +212 -0
  21. pyglet/font/quartz.py +432 -112
  22. pyglet/font/user.py +18 -11
  23. pyglet/font/win32.py +9 -1
  24. pyglet/gl/wgl.py +94 -87
  25. pyglet/gl/wglext_arb.py +472 -218
  26. pyglet/gl/wglext_nv.py +410 -188
  27. pyglet/gui/frame.py +4 -4
  28. pyglet/gui/widgets.py +6 -1
  29. pyglet/image/__init__.py +0 -2
  30. pyglet/image/codecs/bmp.py +3 -5
  31. pyglet/image/codecs/dds.py +1 -1
  32. pyglet/image/codecs/gdiplus.py +28 -9
  33. pyglet/image/codecs/wic.py +198 -489
  34. pyglet/image/codecs/wincodec_lib.py +413 -0
  35. pyglet/input/base.py +3 -2
  36. pyglet/input/linux/x11_xinput.py +3 -3
  37. pyglet/input/linux/x11_xinput_tablet.py +2 -2
  38. pyglet/input/macos/darwin_hid.py +28 -2
  39. pyglet/input/win32/directinput.py +3 -2
  40. pyglet/input/win32/wintab.py +1 -1
  41. pyglet/input/win32/xinput.py +10 -9
  42. pyglet/lib.py +14 -2
  43. pyglet/libs/darwin/cocoapy/cocoalibs.py +74 -3
  44. pyglet/libs/darwin/coreaudio.py +0 -2
  45. pyglet/libs/win32/__init__.py +4 -2
  46. pyglet/libs/win32/com.py +65 -12
  47. pyglet/libs/win32/constants.py +1 -0
  48. pyglet/libs/win32/dinput.py +1 -9
  49. pyglet/libs/win32/types.py +72 -8
  50. pyglet/math.py +5 -5
  51. pyglet/media/codecs/coreaudio.py +1 -0
  52. pyglet/media/codecs/wmf.py +93 -72
  53. pyglet/media/devices/win32.py +5 -4
  54. pyglet/media/drivers/directsound/lib_dsound.py +4 -4
  55. pyglet/media/drivers/xaudio2/interface.py +21 -17
  56. pyglet/media/drivers/xaudio2/lib_xaudio2.py +42 -25
  57. pyglet/model/__init__.py +78 -57
  58. pyglet/shapes.py +1 -1
  59. pyglet/text/document.py +7 -53
  60. pyglet/text/formats/attributed.py +3 -1
  61. pyglet/text/formats/plaintext.py +1 -1
  62. pyglet/text/formats/structured.py +1 -1
  63. pyglet/text/layout/base.py +76 -68
  64. pyglet/text/layout/incremental.py +38 -8
  65. pyglet/text/layout/scrolling.py +1 -1
  66. pyglet/text/runlist.py +2 -114
  67. pyglet/window/__init__.py +11 -8
  68. pyglet/window/win32/__init__.py +1 -3
  69. pyglet/window/xlib/__init__.py +2 -2
  70. {pyglet-2.1.2.dist-info → pyglet-2.1.4.dist-info}/METADATA +2 -3
  71. {pyglet-2.1.2.dist-info → pyglet-2.1.4.dist-info}/RECORD +73 -67
  72. pyglet/font/directwrite.py +0 -2798
  73. {pyglet-2.1.2.dist-info → pyglet-2.1.4.dist-info}/LICENSE +0 -0
  74. {pyglet-2.1.2.dist-info → pyglet-2.1.4.dist-info}/WHEEL +0 -0
File without changes