pyglet 2.1.dev6__tar.gz → 2.1rc1__tar.gz
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-2.1.dev6 → pyglet-2.1rc1}/PKG-INFO +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/RELEASE_NOTES +30 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/conf.py +46 -45
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/index.rst +3 -2
- pyglet-2.1rc1/doc/modules/models.rst +6 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/events.rst +2 -2
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/examplegame.rst +2 -2
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/migration.rst +22 -8
- pyglet-2.1rc1/doc/programming_guide/models.rst +10 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/dpi_scaled_window.py +15 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/fpscamera.py +5 -6
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/model.py +4 -2
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/__init__.py +9 -5
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/__init__.pyi +0 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/app/__init__.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/app/cocoa.py +61 -25
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/customtypes.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/jobs.py +11 -9
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/base.py +8 -8
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/cocoa.py +5 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/headless.py +4 -2
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/shader.py +147 -76
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/vertexdomain.py +6 -2
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gui/ninepatch.py +63 -17
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/__init__.py +26 -17
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/base.py +13 -36
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/controller_db.py +5 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/linux/evdev.py +18 -26
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/macos/darwin_hid.py +3 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/cocoapy/cocoalibs.py +2 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/cocoapy/runtime.py +110 -72
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/com.py +9 -7
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/model/__init__.py +60 -103
- pyglet-2.1rc1/pyglet/model/codecs/__init__.py +58 -0
- pyglet-2.1rc1/pyglet/model/codecs/base.py +140 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/model/codecs/gltf.py +115 -70
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/model/codecs/obj.py +52 -43
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/resource.py +29 -53
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/__init__.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/document.py +53 -7
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/formats/attributed.py +1 -3
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/formats/plaintext.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/formats/structured.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/layout/base.py +18 -14
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/layout/incremental.py +2 -5
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/runlist.py +114 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/__init__.py +4 -4
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/__init__.py +41 -19
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/pyglet_delegate.py +1 -1
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/pyglet_textview.py +8 -5
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/pyglet_view.py +18 -27
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/win32/__init__.py +3 -3
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/xlib/__init__.py +5 -6
- pyglet-2.1rc1/tests/integration/graphics/test_shaders.py +539 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/model/test_loading.py +9 -9
- pyglet-2.1rc1/tests/unit/platform/test_mac_objc.py +114 -0
- pyglet-2.1rc1/tests/unit/shapes/__init__.py +0 -0
- pyglet-2.1rc1/tests/unit/text/__init__.py +0 -0
- pyglet-2.1.dev6/pyglet/model/codecs/__init__.py +0 -63
- pyglet-2.1.dev6/pyglet/model/codecs/base.py +0 -104
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.coveragerc +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.github/ISSUE_TEMPLATE/questions--or-other.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.github/workflows/codeql.yml +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.github/workflows/unittests.yml +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.gitignore +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/.readthedocs.yml +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/LICENSE +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/MANIFEST.in +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/README.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/aseprite_codec/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/aseprite_codec/asedemo.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/aseprite_codec/aseprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/aseprite_codec/running.ase +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/logo3d/logo3d.jpg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/logo3d/logo3d.obj.zip +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/logo3d/logo3d.wings +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/qt_sprite_preview.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/scenemanager.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/contrib/toys/follow_mouse.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/Makefile +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/_static/css/custom.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/_static/favicon.ico +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/_static/logo.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/_static/logo5.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/_static/relatedlogo.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/external_resources.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/contributing.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/dist.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/doc.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/generated.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/gl.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/media_logging_manual.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/media_manual.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/testing.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/virtualenv.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/wraptypes-class.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/internal/wraptypes.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/make.bat +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/app.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/clock.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/customtypes.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/display.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/event.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/font.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/gl.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/graphics/allocation.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/graphics/index.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/graphics/shader.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/graphics/vertexbuffer.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/graphics/vertexdomain.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/gui.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/image/animation.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/image/atlas.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/image/buffer.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/image/index.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/info.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/input.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/math.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/media.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/media_synthesis.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/pyglet.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/resource.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/shapes.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/sprite.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/text/caret.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/text/document.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/text/index.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/text/layout.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/window.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/window_key.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/modules/window_mouse.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/context.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/debug.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/eventloop.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/gl.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/gui.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/image.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/abstract_image.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/abstract_image.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/buffer_image.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/buffer_image.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/context_flow.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/context_flow.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_crosshair.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_default.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_hand.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_no.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_down.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_left.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_left_right.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_right.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_up.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_size_up_down.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_text.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_mac_wait.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_crosshair.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_default.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_hand.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_help.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_no.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_size.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_size_left_right.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_size_nesw.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_size_nwse.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_size_up_down.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_text.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_wait.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/cursor_win_wait_arrow.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/explosion.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/font_metrics.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/font_metrics.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_classes.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_classes.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_grid.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_grid.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_sequence.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/image_sequence.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/mouse_coordinates.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/mouse_coordinates.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/screens.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/screens.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/text_classes.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/text_classes.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_location.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_location.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_osx_borderless.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_osx_default.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_osx_dialog.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_osx_tool.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_xp_default.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_xp_dialog.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_xp_overlay.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_xp_tool.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/img/window_xp_transparent.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/input.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/installation.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/keyboard.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/math.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/media.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/mouse.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/opengles.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/options.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/quickstart.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/rendering.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/resources.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/shapes.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/text.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/time.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/programming_guide/windowing.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/doc/requirements.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/clipboard.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/events/events_key_state_handler.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/events/register_event_type.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/events/window_events.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/events/window_platform_event.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/file_dialog.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/resources/asteroid.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/resources/bullet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/resources/bullet.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/resources/engine_flame.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/resources/player.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version1/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version1/game/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version1/game/load.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version1/game/resources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/game/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/game/load.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/game/physicalobject.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/game/player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version2/game/resources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/load.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/physicalobject.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/resources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version3/game/util.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/bullet.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/load.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/physicalobject.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/resources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version4/game/util.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/asteroid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/bullet.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/load.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/physicalobject.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/resources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/game/version5/game/util.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/graphics/image_convert.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/graphics/image_display.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/bar.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/button_hover.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/button_pressed.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/button_unpressed.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/knob.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/gui/widgets.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/hello_world.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/input/apple_remote.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/input/controller.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/input/input.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/input/joystick.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/input/tablet.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/media_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/media_player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/noisy/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/noisy/ball.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/noisy/ball.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/noisy/noisy.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/reader.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/res/bass.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/res/drums.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/res/guitar.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/res/piano.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/res/space.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/soundspace/soundspace.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/synthesizer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/media/video.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/box.mtl +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/box.obj +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/logo3d.mtl +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/logo3d.obj +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/model/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/compute_shader.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/egl_context.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/minimal_shader.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/opengl_context.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/opengl_core.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/opengl_scissor.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/opengl/torus.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/animation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/dinosaur.gif +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/events.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/hello_world.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/image_viewer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/kitten.jpg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/programming_guide/window_subclass.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/resources/Brick1Blue.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/resources/Brick1Crack3.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/resources/Brick1Gray.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/resources/kitten.jpg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/resources/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/shapes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/sprite/depth_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/sprite/display_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/sprite/multi_texture_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/sprite/sprite_batching.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/text/advanced_font.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/text/html_label.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/text/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/text/text_input.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/timer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/camera.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/camera_group.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/fixed_resolution.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/fps_change.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/multiple_windows.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/overlay_window.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/examples/window/transparent_window.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/dist_field/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/dist_field/genfield.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/dist_field/py.df.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/dist_field/py.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/dist_field/renderfield.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/flaccodec.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/hello_world.svg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/instancing/sprite_instance.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/instancing/sprite_instance_object.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/multitexture_sprite/multitexturesprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/spritebenchmark.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/svg_test.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/wayland/gbm_egl_context.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/experimental/win32priority.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/make.py +0 -0
- /pyglet-2.1.dev6/pyglet/libs/egl/__init__.py → /pyglet-2.1rc1/py.typed +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/app/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/app/win32.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/app/xlib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/clock.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/__init__.pyi +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/cocoa.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/headless.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/win32.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/xlib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/display/xlib_vidmoderestore.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/event.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/README.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/geoshader_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/hidraw.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/multitexture_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/net.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/experimental/particles.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/extlibs/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/extlibs/earcut.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/extlibs/png.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/directwrite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/fontconfig.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/freetype.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/freetype_lib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/quartz.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/ttf.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/user.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/font/win32.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/agl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/gl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/gl_compat.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/gl_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/glx.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/glx_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/glxext_arb.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/glxext_mesa.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/glxext_nv.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/lib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/lib_agl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/lib_glx.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/lib_wgl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/wgl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/wgl_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/wglext_arb.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/wglext_nv.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/win32.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gl/xlib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/allocation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/instance.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/vertexarray.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/graphics/vertexbuffer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gui/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gui/frame.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/gui/widgets.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/animation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/atlas.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/buffer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/bmp.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/dds.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/gdiplus.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/gdkpixbuf2.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/gif.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/pil.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/png.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/quartz.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/s3tc.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/image/codecs/wic.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/controller.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/linux/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/linux/evdev_constants.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/linux/x11_xinput.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/linux/x11_xinput_tablet.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/macos/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/win32/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/win32/directinput.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/win32/wintab.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/input/win32/xinput.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/lib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/cocoapy/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/cocoapy/cocoatypes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/coreaudio.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/darwin/quartzkey.py +0 -0
- {pyglet-2.1.dev6/pyglet/libs/wayland → pyglet-2.1rc1/pyglet/libs/egl}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/egl/egl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/egl/eglext.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/egl/lib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/ioctl.py +0 -0
- {pyglet-2.1.dev6/tests/base → pyglet-2.1rc1/pyglet/libs/wayland}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/wayland/gbm.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/wayland/xkbcommon.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/constants.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/context_managers.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/dinput.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/libwintab.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/types.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/win32/winkey.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/cursorfont.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/xf86vmode.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/xinerama.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/xinput.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/xlib.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/libs/x11/xsync.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/math.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/buffered_logger.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/coreaudio.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/compat.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/libavcodec.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/libavformat.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/libavutil.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/libswresample.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/ffmpeg_lib/libswscale.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/gstreamer.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/pyogg.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/wave.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/codecs/wmf.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/devices/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/devices/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/devices/win32.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/directsound/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/directsound/adaptation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/directsound/exceptions.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/directsound/interface.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/directsound/lib_dsound.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/listener.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/openal/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/openal/adaptation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/openal/interface.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/openal/lib_alc.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/openal/lib_openal.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/pulse/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/pulse/adaptation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/pulse/interface.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/pulse/lib_pulseaudio.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/silent/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/silent/adaptation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/xaudio2/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/xaudio2/adaptation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/xaudio2/interface.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/drivers/xaudio2/lib_xaudio2.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/exceptions.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/instrumentation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/player_worker_thread.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/media/synthesis.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/shapes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/caret.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/formats/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/formats/html.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/layout/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/text/layout/scrolling.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/util.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/pyglet_window.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/cocoa/systemcursor.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/event.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/headless/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/key.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyglet/window/mouse.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pyproject.toml +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/pytest.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/setup.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/annotations.py +0 -0
- {pyglet-2.1.dev6/tests/integration → pyglet-2.1rc1/tests/base}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/base/data.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/base/event_loop.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/base/interactive.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/base/performance.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/conftest.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/action_man.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/action_man_bold.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/action_man_bold_italic.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/action_man_italic.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/fonts/courR12-ISO8859-1.pcf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/8bpp.gif +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/cursor.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/dinosaur.gif +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/gdk_close.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/grey_background.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon1.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon_size1.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon_size2.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon_size3.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon_size4.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/icon_size5.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/l.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/la.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/multitexture.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_16bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_1bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_24bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_32bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_4bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_8bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_8bpp.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_8bpp_trans.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgb_dxt1.dds +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgba.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgba_32bpp.bmp +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgba_dxt1.dds +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgba_dxt3.dds +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/rgba_dxt5.dds +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/images/tests.interactive.test_interactive_test_base._Test.test_1.001.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/alert.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/login.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/logout.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/receive.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/send.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_sawtooth_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_sawtooth_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_silence_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_silence_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_simplefm_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_simplefm_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_sine_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_sine_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_square_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_square_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_triangle_16_11025_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/media/synthesis_triangle_16_44800_1ch.wav +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/models/logo3d.mtl +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/data/models/logo3d.obj +0 -0
- {pyglet-2.1.dev6/tests/integration/app → pyglet-2.1rc1/tests/integration}/__init__.py +0 -0
- {pyglet-2.1.dev6/tests/integration/graphics → pyglet-2.1rc1/tests/integration/app}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/app/test_eventloop.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/conftest.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/font/test_fontconfig.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/font/test_freetype_face.py +0 -0
- {pyglet-2.1.dev6/tests/integration/image → pyglet-2.1rc1/tests/integration/graphics}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/graphics/test_allocation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/graphics/test_batch_migration.py +0 -0
- {pyglet-2.1.dev6/tests/integration/media → pyglet-2.1rc1/tests/integration/image}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/image/test_gdkpixbuf2.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/image/test_imagegrid.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/image/test_texture3d.py +0 -0
- {pyglet-2.1.dev6/tests/integration/model → pyglet-2.1rc1/tests/integration/media}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/mock_player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/test_directsound.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/test_driver.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/test_openal.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/test_player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/media/test_pulse.py +0 -0
- {pyglet-2.1.dev6/tests/integration/resource → pyglet-2.1rc1/tests/integration/model}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/platform/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/platform/test_win_context_managers.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/platform/test_win_multicore_clock.py +0 -0
- {pyglet-2.1.dev6/tests/integration/text → pyglet-2.1rc1/tests/integration/resource}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/dir1/dir1/f3.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/dir1/f2.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/dir1/res.zip +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/dir2/f6.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/f1.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/rgbm.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/test_resource_image_loading.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/resource/test_resource_loading.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/test_integrations.py +0 -0
- {pyglet-2.1.dev6/tests/integration/window → pyglet-2.1rc1/tests/integration/text}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/text/test_empty_document.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/text/test_label_creation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/text/test_layout_creation.py +0 -0
- {pyglet-2.1.dev6/tests/interactive → pyglet-2.1rc1/tests/integration/window}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/window/test_context_share.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/window/test_event_sequence.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/integration/window/test_window_caption.py +0 -0
- {pyglet-2.1.dev6/tests/interactive/image → pyglet-2.1rc1/tests/interactive}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/conftest.py +0 -0
- {pyglet-2.1.dev6/tests/interactive/media → pyglet-2.1rc1/tests/interactive/image}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/image/test_image.py +0 -0
- {pyglet-2.1.dev6/tests/interactive/text → pyglet-2.1rc1/tests/interactive/media}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/media/test_player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/screenshots/committed/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/screenshots/session/README +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/shapes/test_shapes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/test_interactive_test_base.py +0 -0
- {pyglet-2.1.dev6/tests/interactive/window → pyglet-2.1rc1/tests/interactive/text}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_caret_color.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_content_valign.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_html.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_inline_elements.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_inline_elements_style_change.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_multiline_wrap.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_plain.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/text/test_style.py +0 -0
- {pyglet-2.1.dev6/tests/unit → pyglet-2.1rc1/tests/interactive/window}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_events.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_fullscreen.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_modes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_multisample.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_open.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_settings.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/test_window_styles.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/window/window_util.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/interactive/windowed_test_base.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/requirements.txt +0 -0
- {pyglet-2.1.dev6/tests/unit/media → pyglet-2.1rc1/tests/unit}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/conftest.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/math/test_mat.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/math/test_quat.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/math/test_vec2.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/math/test_vec3.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/math/test_vec4.py +0 -0
- {pyglet-2.1.dev6/tests/unit/shader → pyglet-2.1rc1/tests/unit/media}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/media/test_listener.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/media/test_player.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/media/test_sources.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/media/test_synthesis.py +0 -0
- {pyglet-2.1.dev6/tests/unit/shapes → pyglet-2.1rc1/tests/unit/platform}/__init__.py +0 -0
- {pyglet-2.1.dev6/tests/unit/text → pyglet-2.1rc1/tests/unit/shader}/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/shader/conftest.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/shader/test_shader.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/shapes/conftest.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/shapes/test_bordered_rectangle.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/shapes/test_shapes.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_atlas.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_clock.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_clock_freq.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_events.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_font.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_input.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_resource_path.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_sprite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/test_text.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/text/test_caret.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tests/unit/text/test_layout.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/al_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/bokeh_timeline.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/compare.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/configure.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/extractors.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/fs.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/mp.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/mpexceptions.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/playmany.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/readme_ffmpeg_debbuging_branch.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/readme_run_tests.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/report.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/reports.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/retry_crashed.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/run_test_suite.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/summarize.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/test_instrumentation.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/ffmpeg/timeline.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/gencontrollerdb.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/gengl.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/genwrappers.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/gl.template +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/gl.xml +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/gl_info.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/inspect_font.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/requirements.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wgl.h +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/__init__.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/cparser.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/ctypesparser.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/lex.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/preprocessor.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/wrap.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/tools/wraptypes/yacc.py +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/LICENSE.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/README.rst +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/assets/favicon.ico +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/assets/static/css/example-custom-styles.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/assets/static/images/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/404.html/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/404.html/ngc-5793.jpg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/authors/benjamin/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/authors/benjamin/pyglet.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/authors/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/blog/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/blog/welcome-blog/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/contents.lr +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/content/eclipse.jpg +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/pyglet.lektorproject +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/AUTHORS.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/CHANGELOG.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/CONTRIBUTING.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/LICENSE.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/NOTICE.txt +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/README.md +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/css/bootstrap.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/css/icomoon.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/css/magnific-popup.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/css/style.css +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/fonts/icomoon/icomoon.ttf +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/fonts/icomoon/icomoon.woff +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/images/Preloader_2.gif +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/images/placeholder_person.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery-3.3.1.min.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery.easing.min.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery.magnific-popup.min.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery.stellar.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery.stellar.min.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/jquery.waypoints.min.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/magnific-popup-options.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/main-singlelayout.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/assets/static/js/main.js +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/content.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/gallery.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/gallery_item.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/member.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/mission.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/mission_tab.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/service.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/services.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/flowblocks/team.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/blog-index.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/full-blog.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/full-page.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/gallery-404.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/gallery-singlepage.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/mainpage-screenshots.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/images/responsive-layout.png +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/404.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/author.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/authors.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/blog-post.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/blog.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/page.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/models/single-layout.ini +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/404.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/author.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/authors.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blocks/content.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blocks/gallery.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blocks/mission.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blocks/services.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blocks/team.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blog-layout.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blog-post.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/blog.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/layout.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/macros/blog.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/macros/pagination.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/none.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/page.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/templates/single-layout.html +0 -0
- {pyglet-2.1.dev6 → pyglet-2.1rc1}/website/themes/lektor-icon/theme.ini +0 -0
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
pyglet 2.0.18
|
|
2
|
+
|
|
3
|
+
Changes and Improvements
|
|
4
|
+
------------------------
|
|
5
|
+
- shader: add support for OpenGL structures in UBO's (#1212)
|
|
6
|
+
- win32.com: get libs/win32/com.py ready for incoming 3.13 changes #1199
|
|
7
|
+
- docs: fix various typos, and example code to align with docs #1200, #1201
|
|
8
|
+
- text.document: add new AbstractDocument.append_text method for more efficient end-of-text additions #1182
|
|
9
|
+
- tests: fix issues with broken tests on macOS.
|
|
10
|
+
- input.macos: add missing axis alias for modern controllers (Stadia, newer XBOX One)
|
|
11
|
+
- gui.NinePatch: Add a new NinePatch.create_around_layout class method
|
|
12
|
+
- typing: add py.typed file #1205
|
|
13
|
+
|
|
14
|
+
Bugfixes
|
|
15
|
+
--------
|
|
16
|
+
- shader: fix matrix uniform assignment #1194
|
|
17
|
+
- text: fix missing caret top level import
|
|
18
|
+
- text.layout: fix updating anchor on the X axis #1213
|
|
19
|
+
- text.layout: move get_line_count function into the base TextLayout class
|
|
20
|
+
- window.macos: fix blinking cursor in bottom left of window #1204
|
|
21
|
+
- examples: fix rectangle not appearing in text_input example
|
|
22
|
+
- macos: fix missing dealloc for text view.
|
|
23
|
+
- macos: fix some deallocation issues when creating multiple windows.
|
|
24
|
+
- macos: fix event loop termination exiting the entire app.
|
|
25
|
+
- macos: fix focus being stolen by other apps during launch. (#1211)
|
|
26
|
+
- macos: fix error about pygletUpdate when closing a window. (#1219)
|
|
27
|
+
- macos: fix function keys not registering. (#1220)
|
|
28
|
+
- docs: move check for `sys.modules['sphinx']` into doc/conf.py to prevent conflicts with jupyter #1215
|
|
29
|
+
|
|
30
|
+
|
|
1
31
|
pyglet 2.0.17
|
|
2
32
|
|
|
3
33
|
Changes and Improvements
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
# pyglet documentation build configuration file.
|
|
3
3
|
#
|
|
4
4
|
# This file is execfile()d with the current directory set to its containing dir.
|
|
5
|
-
import datetime
|
|
6
5
|
import os
|
|
7
6
|
import sys
|
|
8
7
|
import time
|
|
9
8
|
import typing
|
|
9
|
+
import datetime
|
|
10
|
+
|
|
10
11
|
from typing import TypeVar
|
|
11
12
|
|
|
12
13
|
import sphinx_autodoc_typehints
|
|
@@ -31,7 +32,7 @@ def parse_attributes_section(self, section):
|
|
|
31
32
|
_type = self._lookup_annotation(_name)
|
|
32
33
|
if _name in self._annotations:
|
|
33
34
|
_type = sphinx_autodoc_typehints.add_type_css_class(
|
|
34
|
-
|
|
35
|
+
sphinx_autodoc_typehints.format_annotation(self._annotations[_name], self._app.config))
|
|
35
36
|
|
|
36
37
|
field = self._format_field(_name, _type, _desc)
|
|
37
38
|
if multi:
|
|
@@ -48,12 +49,15 @@ def parse_attributes_section(self, section):
|
|
|
48
49
|
|
|
49
50
|
GoogleDocstring._parse_attributes_section = parse_attributes_section
|
|
50
51
|
|
|
52
|
+
|
|
51
53
|
# Unpatch... the patch.
|
|
52
54
|
def _revert_patch():
|
|
53
55
|
pass
|
|
54
56
|
|
|
57
|
+
|
|
55
58
|
sphinx_autodoc_typehints.patches._patch_google_docstring_lookup_annotation = _revert_patch
|
|
56
59
|
|
|
60
|
+
|
|
57
61
|
# Patch to fix our RST insertion issues.
|
|
58
62
|
class _RstSnippetParser(RSTParser):
|
|
59
63
|
@staticmethod
|
|
@@ -63,13 +67,14 @@ class _RstSnippetParser(RSTParser):
|
|
|
63
67
|
|
|
64
68
|
sphinx_autodoc_typehints.parser.RSTParser = _RstSnippetParser
|
|
65
69
|
|
|
70
|
+
|
|
66
71
|
def write_build(data, filename):
|
|
67
72
|
with open(os.path.join("internal", filename), "w") as f:
|
|
68
73
|
f.write(".. list-table::\n")
|
|
69
74
|
f.write(" :widths: 50 50\n")
|
|
70
75
|
f.write("\n")
|
|
71
76
|
for var, val in data:
|
|
72
|
-
f.write(" * - "+var+"\n - "+val+"\n")
|
|
77
|
+
f.write(" * - " + var + "\n - " + val + "\n")
|
|
73
78
|
|
|
74
79
|
|
|
75
80
|
sys.is_pyglet_doc_run = True
|
|
@@ -82,17 +87,14 @@ sys.path.insert(0, os.path.abspath("."))
|
|
|
82
87
|
# import the pyglet package.
|
|
83
88
|
sys.path.insert(0, os.path.abspath(".."))
|
|
84
89
|
|
|
85
|
-
|
|
86
90
|
try:
|
|
87
91
|
import pyglet
|
|
92
|
+
|
|
88
93
|
print(f"Generating pyglet {pyglet.version} Documentation")
|
|
89
94
|
except ImportError:
|
|
90
95
|
print("ERROR: pyglet not found")
|
|
91
96
|
sys.exit(1)
|
|
92
97
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
98
|
# -- PYGLET DOCUMENTATION CONFIGURATION ----------------------------------------
|
|
97
99
|
|
|
98
100
|
|
|
@@ -150,7 +152,6 @@ skip_modules = {"pyglet": {
|
|
|
150
152
|
},
|
|
151
153
|
}
|
|
152
154
|
|
|
153
|
-
|
|
154
155
|
now = datetime.datetime.fromtimestamp(time.time())
|
|
155
156
|
build_data = (("Date", now.strftime("%Y/%m/%d %H:%M:%S")),
|
|
156
157
|
("pyglet version", pyglet.version))
|
|
@@ -227,19 +228,19 @@ release = pyglet.version
|
|
|
227
228
|
|
|
228
229
|
# There are two options for replacing |today|: either, you set today to some
|
|
229
230
|
# non-false value, then it is used:
|
|
230
|
-
#today = ''
|
|
231
|
+
# today = ''
|
|
231
232
|
# Else, today_fmt is used as the format for a strftime call.
|
|
232
|
-
#today_fmt = '%B %d, %Y'
|
|
233
|
+
# today_fmt = '%B %d, %Y'
|
|
233
234
|
|
|
234
235
|
# List of patterns, relative to source directory, that match files and
|
|
235
236
|
# directories to ignore when looking for source files.
|
|
236
237
|
exclude_patterns = ["_build", "_templates", "api"]
|
|
237
238
|
|
|
238
239
|
# The reST default role (used for this markup: `text`) to use for all documents.
|
|
239
|
-
#default_role = None
|
|
240
|
+
# default_role = None
|
|
240
241
|
|
|
241
242
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
242
|
-
#add_function_parentheses = True
|
|
243
|
+
# add_function_parentheses = True
|
|
243
244
|
|
|
244
245
|
# If true, the current module name will be prepended to all description
|
|
245
246
|
# unit titles (such as .. function::).
|
|
@@ -247,7 +248,7 @@ add_module_names = False
|
|
|
247
248
|
|
|
248
249
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
249
250
|
# output. They are ignored by default.
|
|
250
|
-
#show_authors = False
|
|
251
|
+
# show_authors = False
|
|
251
252
|
|
|
252
253
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
253
254
|
pygments_style = "sphinx"
|
|
@@ -255,7 +256,6 @@ pygments_style = "sphinx"
|
|
|
255
256
|
# A list of ignored prefixes for module index sorting.
|
|
256
257
|
modindex_common_prefix = ["pyglet."]
|
|
257
258
|
|
|
258
|
-
|
|
259
259
|
# -- Options for HTML output ---------------------------------------------------
|
|
260
260
|
|
|
261
261
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
@@ -265,7 +265,7 @@ html_theme = "sphinx_rtd_theme"
|
|
|
265
265
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
266
266
|
# further. For a list of options available for each theme, see the
|
|
267
267
|
# documentation.
|
|
268
|
-
#html_theme_options = {}
|
|
268
|
+
# html_theme_options = {}
|
|
269
269
|
|
|
270
270
|
# Force custom css to allow multiline inits.
|
|
271
271
|
html_css_files = [
|
|
@@ -299,18 +299,18 @@ html_static_path = ["_static"]
|
|
|
299
299
|
|
|
300
300
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
301
301
|
# using the given strftime format.
|
|
302
|
-
#html_last_updated_fmt = '%b %d, %Y'
|
|
302
|
+
# html_last_updated_fmt = '%b %d, %Y'
|
|
303
303
|
|
|
304
304
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
305
305
|
# typographically correct entities.
|
|
306
|
-
#html_use_smartypants = True
|
|
306
|
+
# html_use_smartypants = True
|
|
307
307
|
|
|
308
308
|
# Custom sidebar templates, maps document names to template names.
|
|
309
|
-
#html_sidebars = {}
|
|
309
|
+
# html_sidebars = {}
|
|
310
310
|
|
|
311
311
|
# Additional templates that should be rendered to pages, maps page names to
|
|
312
312
|
# template names.
|
|
313
|
-
#html_additional_pages = {}
|
|
313
|
+
# html_additional_pages = {}
|
|
314
314
|
|
|
315
315
|
# If false, no module index is generated.
|
|
316
316
|
html_domain_indices = True
|
|
@@ -325,62 +325,61 @@ html_split_index = True
|
|
|
325
325
|
html_show_sourcelink = False
|
|
326
326
|
|
|
327
327
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
328
|
-
#html_show_sphinx = True
|
|
328
|
+
# html_show_sphinx = True
|
|
329
329
|
|
|
330
330
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
331
|
-
#html_show_copyright = True
|
|
331
|
+
# html_show_copyright = True
|
|
332
332
|
|
|
333
333
|
# If true, an OpenSearch description file will be output, and all pages will
|
|
334
334
|
# contain a <link> tag referring to it. The value of this option must be the
|
|
335
335
|
# base URL from which the finished HTML is served.
|
|
336
|
-
#html_use_opensearch = ''
|
|
336
|
+
# html_use_opensearch = ''
|
|
337
337
|
|
|
338
338
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
339
|
-
#html_file_suffix = None
|
|
339
|
+
# html_file_suffix = None
|
|
340
340
|
|
|
341
341
|
# Output file base name for HTML help builder.
|
|
342
342
|
htmlhelp_basename = "pygletdoc"
|
|
343
343
|
|
|
344
|
-
|
|
345
344
|
# -- Options for LaTeX output --------------------------------------------------
|
|
346
345
|
|
|
347
346
|
latex_elements = {
|
|
348
|
-
# The paper size ('letterpaper' or 'a4paper').
|
|
349
|
-
#'papersize': 'letterpaper',
|
|
347
|
+
# The paper size ('letterpaper' or 'a4paper').
|
|
348
|
+
# 'papersize': 'letterpaper',
|
|
350
349
|
|
|
351
|
-
# The font size ('10pt', '11pt' or '12pt').
|
|
352
|
-
#'pointsize': '10pt',
|
|
350
|
+
# The font size ('10pt', '11pt' or '12pt').
|
|
351
|
+
# 'pointsize': '10pt',
|
|
353
352
|
|
|
354
|
-
# Additional stuff for the LaTeX preamble.
|
|
355
|
-
#'preamble': '',
|
|
353
|
+
# Additional stuff for the LaTeX preamble.
|
|
354
|
+
# 'preamble': '',
|
|
356
355
|
}
|
|
357
356
|
|
|
358
357
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
359
358
|
# (source start file, target name, title, author, documentclass [howto/manual]).
|
|
360
359
|
latex_documents = [
|
|
361
|
-
|
|
362
|
-
|
|
360
|
+
("index", "pyglet.tex", "pyglet Documentation",
|
|
361
|
+
"Alex Holkner", "manual"),
|
|
363
362
|
]
|
|
364
363
|
|
|
365
364
|
# The name of an image file (relative to this directory) to place at the top of
|
|
366
365
|
# the title page.
|
|
367
|
-
#latex_logo = None
|
|
366
|
+
# latex_logo = None
|
|
368
367
|
|
|
369
368
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
370
369
|
# not chapters.
|
|
371
|
-
#latex_use_parts = False
|
|
370
|
+
# latex_use_parts = False
|
|
372
371
|
|
|
373
372
|
# If true, show page references after internal links.
|
|
374
|
-
#latex_show_pagerefs = False
|
|
373
|
+
# latex_show_pagerefs = False
|
|
375
374
|
|
|
376
375
|
# If true, show URL addresses after external links.
|
|
377
|
-
#latex_show_urls = False
|
|
376
|
+
# latex_show_urls = False
|
|
378
377
|
|
|
379
378
|
# Documents to append as an appendix to all manuals.
|
|
380
|
-
#latex_appendices = []
|
|
379
|
+
# latex_appendices = []
|
|
381
380
|
|
|
382
381
|
# If false, no module index is generated.
|
|
383
|
-
#latex_domain_indices = True
|
|
382
|
+
# latex_domain_indices = True
|
|
384
383
|
|
|
385
384
|
|
|
386
385
|
# -- Options for manual page output --------------------------------------------
|
|
@@ -393,7 +392,7 @@ man_pages = [
|
|
|
393
392
|
]
|
|
394
393
|
|
|
395
394
|
# If true, show URL addresses after external links.
|
|
396
|
-
#man_show_urls = False
|
|
395
|
+
# man_show_urls = False
|
|
397
396
|
|
|
398
397
|
|
|
399
398
|
# -- Options for Texinfo output ------------------------------------------------
|
|
@@ -402,24 +401,25 @@ man_pages = [
|
|
|
402
401
|
# (source start file, target name, title, author,
|
|
403
402
|
# dir menu entry, description, category)
|
|
404
403
|
texinfo_documents = [
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
404
|
+
("index", "pyglet", "pyglet Documentation",
|
|
405
|
+
"Alex Holkner", "pyglet", "One line description of project.",
|
|
406
|
+
"Miscellaneous"),
|
|
408
407
|
]
|
|
409
408
|
|
|
410
409
|
# Documents to append as an appendix to all manuals.
|
|
411
|
-
#texinfo_appendices = []
|
|
410
|
+
# texinfo_appendices = []
|
|
412
411
|
|
|
413
412
|
# If false, no module index is generated.
|
|
414
|
-
#texinfo_domain_indices = True
|
|
413
|
+
# texinfo_domain_indices = True
|
|
415
414
|
|
|
416
415
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
|
417
|
-
#texinfo_show_urls = 'footnote'
|
|
416
|
+
# texinfo_show_urls = 'footnote'
|
|
418
417
|
|
|
419
418
|
python_maximum_signature_line_length = 85
|
|
420
419
|
|
|
421
420
|
nitpicky = True
|
|
422
421
|
|
|
422
|
+
|
|
423
423
|
def custom_formatter(annotation, config):
|
|
424
424
|
# Fixes TypeVar bounds, where the bound reference is forward referenced and class cannot be determined.
|
|
425
425
|
# Defaults to a class style. Seems good enough for now since most bound things are classes.
|
|
@@ -447,4 +447,5 @@ def custom_formatter(annotation, config):
|
|
|
447
447
|
return f":py:class:`TypeVar` {formatted_args}"
|
|
448
448
|
return None
|
|
449
449
|
|
|
450
|
+
|
|
450
451
|
typehints_formatter = custom_formatter
|
|
@@ -50,10 +50,11 @@ If you are migrating from an older version of pyglet, please read through
|
|
|
50
50
|
programming_guide/keyboard
|
|
51
51
|
programming_guide/mouse
|
|
52
52
|
programming_guide/input
|
|
53
|
-
programming_guide/shapes
|
|
54
53
|
programming_guide/image
|
|
55
|
-
programming_guide/media
|
|
56
54
|
programming_guide/text
|
|
55
|
+
programming_guide/media
|
|
56
|
+
programming_guide/shapes
|
|
57
|
+
programming_guide/models
|
|
57
58
|
programming_guide/resources
|
|
58
59
|
programming_guide/rendering
|
|
59
60
|
programming_guide/events
|
|
@@ -14,7 +14,7 @@ base class. Many of pyglet's built-in modules, such as :py:mod:`pyglet.window`,
|
|
|
14
14
|
:py:mod:`pyglet.gui` and others make use of this pattern. You can also reuse this in
|
|
15
15
|
your own classes easily.
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Event handlers are simply functions or methods that are written to accept the same
|
|
18
18
|
arguments as the dispatched event. Event handlers can be registered or unregistered
|
|
19
19
|
during runtime. More than one handler can be registered to receive the same events,
|
|
20
20
|
which is described in the following sections. Event dispatchers can *optionally* have
|
|
@@ -27,7 +27,7 @@ Setting event handlers
|
|
|
27
27
|
|
|
28
28
|
For an example, lets look at the :py:class:`~pyglet.window.Window` class.
|
|
29
29
|
:py:class:`~pyglet.window.Window` subclasses :py:class:`~pyglet.event.EventDispatcher`
|
|
30
|
-
and, being
|
|
30
|
+
and, being a Window, has a variety of different events which it dispatches.
|
|
31
31
|
For instance, the :py:meth:`pyglet.window.Window.on_resize` event. Every time a
|
|
32
32
|
resizeable Window is resized (and once when first created), this event is dispatched
|
|
33
33
|
with two parameters: ``(width, height)``. Therefore, an event handler for this event
|
|
@@ -119,9 +119,9 @@ Making the labels
|
|
|
119
119
|
|
|
120
120
|
To make a text label in pyglet, just initialize a :class:`pyglet.text.Label` object::
|
|
121
121
|
|
|
122
|
-
score_label = pyglet.text.Label(text="Score: 0", x=10, y=
|
|
122
|
+
score_label = pyglet.text.Label(text="Score: 0", x=10, y=575)
|
|
123
123
|
level_label = pyglet.text.Label(text="My Amazing Game",
|
|
124
|
-
x=game_window.width//2, y=
|
|
124
|
+
x=game_window.width//2, y=575, anchor_x='center')
|
|
125
125
|
|
|
126
126
|
Notice that the second label is centered using the anchor_x attribute.
|
|
127
127
|
|
|
@@ -12,7 +12,10 @@ are having an issue that is not covered here, please open up an issue ticket on
|
|
|
12
12
|
|
|
13
13
|
Window "HiDPI" support
|
|
14
14
|
----------------------
|
|
15
|
-
|
|
15
|
+
The v2.1 release now provides a lot more control over how modern 'HiDPI' displays
|
|
16
|
+
are treated. This includes "retina" displays, or any display that has a non-0% zoom
|
|
17
|
+
or scale (such as 4K displays). This is exposed as new pyglet options. See
|
|
18
|
+
``pyglet.options.dpi_scaling`` for more information.
|
|
16
19
|
|
|
17
20
|
Labels & Text Layouts
|
|
18
21
|
---------------------
|
|
@@ -84,7 +87,7 @@ as booleans for a quick workaround when migrating, you can do something like thi
|
|
|
84
87
|
|
|
85
88
|
|
|
86
89
|
Vectors can also be useful for analog sticks, because it gives an easy way to
|
|
87
|
-
calculate dead-zones using
|
|
90
|
+
calculate dead-zones using ``.length()``. For example::
|
|
88
91
|
|
|
89
92
|
@controller.event
|
|
90
93
|
def on_stick_motion(controller, name, vector):
|
|
@@ -102,8 +105,8 @@ that the maximum value stays within range. For example::
|
|
|
102
105
|
|
|
103
106
|
vector = min(vector, vector.normalize())
|
|
104
107
|
|
|
105
|
-
You can also of course directly access the individual
|
|
106
|
-
|
|
108
|
+
You can also of course directly access the individual ``Vec2.x`` & ``Vec2.y`` attributes,
|
|
109
|
+
if you want to . See :py:class:`~pyglet.math.Vec2` for more details on vector types.
|
|
107
110
|
|
|
108
111
|
Gui
|
|
109
112
|
---
|
|
@@ -116,8 +119,8 @@ The :py:class:`~pyglet.gui.widget.ToggleButton` and :py:class:`~pyglet.gui.widge
|
|
|
116
119
|
widgets have a small change. Instead of the image arguments being named "pressed"
|
|
117
120
|
and "depressed", they has been renamed to the correct "pressed" and "unpressed".
|
|
118
121
|
|
|
119
|
-
Math
|
|
120
|
-
|
|
122
|
+
Math
|
|
123
|
+
----
|
|
121
124
|
In the :py:mod:`~pyglet.math` module, vector types (:py:class:`~pyglet.math.Vec2`,
|
|
122
125
|
:py:class:`~pyglet.math.Vec3`, :py:class:`~pyglet.math.Vec4`) are now
|
|
123
126
|
immutable; all operations will return a new object. In addition, all vector objects
|
|
@@ -139,12 +142,23 @@ way as vectors). For example:
|
|
|
139
142
|
Matrix objects are generally created via their helper methods, so this change should
|
|
140
143
|
hopefully not require any code updates for most users.
|
|
141
144
|
|
|
145
|
+
Models
|
|
146
|
+
------
|
|
147
|
+
The :py:mod:`~pyglet.model` module has seen some changes. This is an undocumented
|
|
148
|
+
WIP module for pyglet 2.0, and it remains so pyglet 2.1. That said, it's in a more
|
|
149
|
+
usable state now. The first change is that :py:meth:`~pyglet.model.load` now returns
|
|
150
|
+
a ``Scene`` object instead of a ``Model`` object. The Scene is a new, "pure data"
|
|
151
|
+
intermediate representation of a 3D scene, that closely mimics the layout of the glTF
|
|
152
|
+
format. The :py:meth:`~pyglet.model.Scene.create_models` method can be used to create
|
|
153
|
+
``Model`` instances from the Scene, but the Scene data can also be manually iterated
|
|
154
|
+
over for more advanced use cases.
|
|
155
|
+
|
|
142
156
|
Canvas module
|
|
143
157
|
-------------
|
|
144
|
-
The
|
|
158
|
+
The ``pyglet.canvas`` module has been renamed to ``pyglet.display``. The "canvas"
|
|
145
159
|
concept was a work-in-progress in legacy pyglet, and was never fully fleshed out.
|
|
146
160
|
It appears to have been meant to allow arbitrary renderable areas, but this type
|
|
147
|
-
of functionality can now be easily accomplished with Framebuffers. The name
|
|
161
|
+
of functionality can now be easily accomplished with Framebuffers. The name ``display``
|
|
148
162
|
is a more accurate representation of what the code in the module actually relates to.
|
|
149
163
|
The usage is the same, with just the name change::
|
|
150
164
|
|
|
@@ -71,10 +71,25 @@ def on_resize(width, height):
|
|
|
71
71
|
hello_label.position = (window.width // 2, window.height // 2, 0)
|
|
72
72
|
|
|
73
73
|
|
|
74
|
+
screens = pyglet.display.get_display().get_screens()
|
|
75
|
+
selected_screen = screens[0]
|
|
76
|
+
|
|
74
77
|
@window.event
|
|
75
78
|
def on_key_press(symbol, modifiers):
|
|
79
|
+
global selected_screen
|
|
80
|
+
if len(screens) > 1:
|
|
81
|
+
if symbol == pyglet.window.key._1:
|
|
82
|
+
selected_screen = screens[1]
|
|
83
|
+
elif symbol == pyglet.window.key._0:
|
|
84
|
+
selected_screen = screens[0]
|
|
85
|
+
|
|
76
86
|
if symbol == pyglet.window.key.SPACE:
|
|
77
87
|
window.set_size(500, 300)
|
|
88
|
+
elif symbol == pyglet.window.key.F:
|
|
89
|
+
window.set_fullscreen(False, screen=selected_screen)
|
|
90
|
+
elif symbol == pyglet.window.key.G:
|
|
91
|
+
window.set_fullscreen(True, screen=selected_screen)
|
|
92
|
+
|
|
78
93
|
|
|
79
94
|
|
|
80
95
|
@window.event
|
|
@@ -10,17 +10,16 @@ to your needs for first person games.
|
|
|
10
10
|
"""
|
|
11
11
|
|
|
12
12
|
from __future__ import annotations
|
|
13
|
+
|
|
13
14
|
import weakref
|
|
14
|
-
|
|
15
|
+
|
|
15
16
|
from math import radians, degrees
|
|
16
17
|
|
|
17
18
|
import pyglet
|
|
18
|
-
from pyglet.window import key as _key
|
|
19
19
|
|
|
20
20
|
from pyglet.gl import glEnable, GL_DEPTH_TEST, GL_CULL_FACE
|
|
21
21
|
from pyglet.math import Vec2, Vec3, Mat4, clamp
|
|
22
|
-
|
|
23
|
-
MODULE_PATH = Path(__file__).parent
|
|
22
|
+
from pyglet.window import key as _key
|
|
24
23
|
|
|
25
24
|
|
|
26
25
|
class FPSCamera:
|
|
@@ -346,8 +345,8 @@ if __name__ == "__main__":
|
|
|
346
345
|
glEnable(GL_DEPTH_TEST)
|
|
347
346
|
glEnable(GL_CULL_FACE)
|
|
348
347
|
|
|
349
|
-
model_logo = pyglet.model
|
|
350
|
-
model_box = pyglet.model
|
|
348
|
+
model_logo = pyglet.resource.model("logo3d.obj", batch=batch)
|
|
349
|
+
model_box = pyglet.resource.model("box.obj", batch=batch)
|
|
351
350
|
|
|
352
351
|
# Camera controls the global projection & view matrixes:
|
|
353
352
|
camera = FPSCamera(window, position=Vec3(0.0, 0.0, 5.0))
|
|
@@ -44,8 +44,10 @@ if __name__ == "__main__":
|
|
|
44
44
|
glEnable(GL_DEPTH_TEST)
|
|
45
45
|
glEnable(GL_CULL_FACE)
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
logo_scene = pyglet.resource.scene('logo3d.obj')
|
|
48
|
+
box_scene = pyglet.resource.scene('box.obj')
|
|
49
|
+
model_logo = logo_scene.create_models(batch=batch)[0] # only one model in this scene
|
|
50
|
+
model_box = box_scene.create_models(batch=batch)[0] # only one model in this scene
|
|
49
51
|
|
|
50
52
|
# Set the application wide view matrix (camera):
|
|
51
53
|
window.view = Mat4.look_at(position=Vec3(0, 0, 5), target=Vec3(0, 0, 0), up=Vec3(0, 1, 0))
|
|
@@ -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.
|
|
18
|
+
version = '2.1.rc1'
|
|
19
19
|
__version__ = version
|
|
20
20
|
|
|
21
21
|
MIN_PYTHON_VERSION = 3, 8
|
|
@@ -25,9 +25,6 @@ if sys.version_info < MIN_PYTHON_VERSION:
|
|
|
25
25
|
msg = f"pyglet {version} requires Python {MIN_PYTHON_VERSION_STR} or newer."
|
|
26
26
|
raise Exception(msg)
|
|
27
27
|
|
|
28
|
-
if "sphinx" in sys.modules:
|
|
29
|
-
sys.is_pyglet_doc_run = True
|
|
30
|
-
|
|
31
28
|
# pyglet platform treats *BSD systems as Linux
|
|
32
29
|
compat_platform = sys.platform
|
|
33
30
|
if "bsd" in compat_platform:
|
|
@@ -250,7 +247,7 @@ class Options:
|
|
|
250
247
|
|
|
251
248
|
.. versionadded:: 2.0.5"""
|
|
252
249
|
|
|
253
|
-
dpi_scaling: Literal["real", "scaled", "stretch"] = "real"
|
|
250
|
+
dpi_scaling: Literal["real", "scaled", "stretch", "platform"] = "real"
|
|
254
251
|
"""For 'HiDPI' displays, Window behavior can differ between operating systems. Defaults to `'real'`.
|
|
255
252
|
|
|
256
253
|
The current options are an attempt to create consistent behavior across all of the operating systems.
|
|
@@ -273,6 +270,13 @@ class Options:
|
|
|
273
270
|
rescaling and repositioning of content will be necessary, but at the cost of blurry content depending on the extent
|
|
274
271
|
of the stretch. For example, 800x600 at 150% DPI will be 800x600 for `window.get_size()` and 1200x900 for
|
|
275
272
|
`window.get_framebuffer_size()`.
|
|
273
|
+
|
|
274
|
+
`'platform'`: A DPI aware window is created, however window sizing and framebuffer sizing is not interfered with
|
|
275
|
+
by Pyglet. Final sizes are dictated by the platform the window was created on. It is up to the user to make any
|
|
276
|
+
platform adjustments themselves such as sizing on a platform, mouse coordinate adjustments, or framebuffer size
|
|
277
|
+
handling. On Windows and X11, the framebuffer and the requested window size will always match in pixels 1:1. On
|
|
278
|
+
MacOS, depending on a Hi-DPI display, you may get a different sized framebuffer than the window size. This option
|
|
279
|
+
does allow `window.dpi` and `window.scale` to return their respective values.
|
|
276
280
|
"""
|
|
277
281
|
|
|
278
282
|
shader_bind_management: bool = True
|
|
@@ -68,7 +68,7 @@ the set when they are no longer referenced or are closed explicitly.
|
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
def run(interval: float | None = 1/60) -> None:
|
|
71
|
+
def run(interval: float | None = 1 / 60) -> None:
|
|
72
72
|
"""Begin processing events, scheduled functions and window updates.
|
|
73
73
|
|
|
74
74
|
This is a convenience function, equivalent to::
|