├── .gitignore ├── CHANGELOG ├── DESIGN ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README ├── contrib ├── experimental │ ├── avcodec.py │ ├── blend.py │ ├── blur.py │ ├── buffer │ │ ├── bars.py │ │ ├── doc.txt │ │ ├── info.att │ │ ├── sprites.py │ │ ├── streamers.py │ │ ├── test_image.py │ │ ├── test_immediate.py │ │ ├── test_retained.py │ │ ├── text.py │ │ └── torus.py │ ├── console.py │ ├── customwin.py │ ├── dist_field │ │ ├── README │ │ ├── genfield.py │ │ ├── py.df.png │ │ ├── py.png │ │ └── renderfield.py │ ├── hello_world.svg │ ├── input │ │ ├── dinput.py │ │ ├── input.py │ │ ├── lib_xinput.py │ │ ├── linux.py │ │ ├── linux_const.py │ │ ├── osx.py │ │ ├── osx_tablet.py │ │ ├── show_input.py │ │ ├── tablet-notes.txt │ │ ├── test_wintab.py │ │ ├── test_xinput.py │ │ ├── usage.py │ │ ├── wintab.py │ │ └── xinput.py │ ├── lib_avcodec.py │ ├── lib_avformat.py │ ├── modeswitch │ │ ├── fs.py │ │ ├── lib_xf86vmode.py │ │ ├── lib_xrandr.py │ │ ├── osx.py │ │ ├── setup_path.py │ │ ├── win32device.py │ │ ├── x11vmode.py │ │ └── xrandr.py │ ├── mt_media │ │ ├── drivers │ │ │ ├── __init__.py │ │ │ ├── directsound │ │ │ │ ├── __init__.py │ │ │ │ └── lib_dsound.py │ │ │ ├── openal │ │ │ │ ├── __init__.py │ │ │ │ ├── lib_alc.py │ │ │ │ └── lib_openal.py │ │ │ ├── pulse │ │ │ │ ├── __init__.py │ │ │ │ └── lib_pulseaudio.py │ │ │ └── silent.py │ │ ├── media_player.py │ │ ├── mt_app_carbon.py │ │ ├── mt_app_win32.py │ │ ├── mt_app_xlib.py │ │ ├── mt_avbin.py │ │ ├── mt_media.py │ │ ├── mt_procedural.py │ │ ├── setup_path.py │ │ ├── test1.py │ │ ├── test2.py │ │ └── test_video.py │ ├── ninepatch.py │ ├── pinch.py │ ├── profile_layout.py │ ├── pulse │ │ ├── lib_pulseaudio.py │ │ ├── pulse.py │ │ └── test_pulse.py │ ├── rest.py │ ├── shader.py │ ├── solid.py │ ├── sprite.py │ ├── svg_test.py │ └── swigtypes │ │ ├── ffi.py │ │ ├── parse.py │ │ └── swigtypes.py ├── logo3d │ ├── logo3d.jpg │ ├── logo3d.obj.zip │ └── logo3d.wings ├── model │ ├── examples │ │ ├── euclid.py │ │ ├── obj_test.py │ │ ├── rabbit.mtl │ │ ├── rabbit.obj │ │ └── tree_test.py │ └── model │ │ ├── __init__.py │ │ ├── geometric.py │ │ ├── obj.py │ │ └── obj_batch.py ├── projection │ ├── projection.py │ └── tests │ │ └── projection │ │ ├── VIEWPORT_CLIP.py │ │ ├── VIEWPORT_ORTHO.py │ │ ├── __init__.py │ │ └── base_projection.py ├── scene2d │ ├── examples │ │ ├── car.png │ │ ├── driving.py │ │ ├── invader-sprites.png │ │ ├── invaders.py │ │ ├── invaders.xml │ │ ├── keen_intro.py │ │ ├── ld24-lander │ │ │ ├── land-tiles.png │ │ │ ├── land-tiles.xcf │ │ │ ├── lander.py │ │ │ ├── lander.xml │ │ │ ├── screenshot.png │ │ │ ├── sprites.png │ │ │ ├── sprites.svg │ │ │ └── sprites.xcf │ │ ├── los.py │ │ ├── road-map.xml │ │ ├── road-tiles.png │ │ ├── road-tiles.xml │ │ └── text_wrap.py │ ├── resource.py │ ├── scene2d │ │ ├── __init__.py │ │ ├── camera.py │ │ ├── debug.py │ │ ├── drawable.py │ │ ├── event.py │ │ ├── image.py │ │ ├── map.py │ │ ├── sprite.py │ │ ├── textsprite.py │ │ ├── tile.py │ │ └── view.py │ └── tests │ │ └── scene2d │ │ ├── FLAT_OOB.py │ │ ├── FLAT_SCROLLING.py │ │ ├── FLAT_SPRITE.py │ │ ├── HEX_FLAT_DEBUG.py │ │ ├── HEX_FLAT_MOUSE.py │ │ ├── LOAD_HEXMAP.py │ │ ├── LOAD_RECTMAP.py │ │ ├── MAP_MODEL.py │ │ ├── RECT_FLAT_DEBUG.py │ │ ├── RECT_FLAT_MOUSE.py │ │ ├── SPRITE_MODEL.py │ │ ├── SPRITE_OVERLAP.py │ │ ├── VIEW_SUBWINDOW.py │ │ ├── __init__.py │ │ ├── ball.png │ │ ├── hexmap.xml │ │ ├── hextiles.png │ │ ├── map.xml │ │ ├── render_base.py │ │ └── tiles.png ├── spryte │ ├── ball.png │ ├── balls.py │ ├── boom.py │ ├── car.png │ ├── cars.py │ ├── design.txt │ ├── driving.py │ ├── dtd │ │ ├── basic-gun.png │ │ ├── dtd.py │ │ └── path.py │ ├── explosion.png │ ├── los.py │ ├── rect.py │ ├── road-tiles.png │ ├── spryte.py │ ├── tests │ │ ├── __init__.py │ │ └── test_rect.py │ ├── tilemap.py │ └── view.py ├── toys │ ├── euclid.py │ ├── follow_mouse.py │ ├── primitives.py │ └── thrust.py └── wydget │ ├── BUGS │ ├── LICENSE │ ├── README │ ├── doc │ └── xml-format.txt │ ├── run_tests.py │ ├── tests │ ├── data │ │ ├── ball-small.png │ │ ├── bg-100x19.png │ │ ├── bg-over-100x19.png │ │ ├── bg-pressed-100x19.png │ │ └── kitten.jpg │ ├── test_active.xml │ ├── test_button.xml │ ├── test_combo_box.xml │ ├── test_drag.xml │ ├── test_drawer.xml │ ├── test_element.xml │ ├── test_element_over.xml │ ├── test_enabled.xml │ ├── test_frame.xml │ ├── test_label.xml │ ├── test_label_direction.xml │ ├── test_layout.xml │ ├── test_layout_form.xml │ ├── test_layout_grid.xml │ ├── test_layout_horizontal.xml │ ├── test_layout_sizing.xml │ ├── test_layout_vertical.xml │ ├── test_menu.xml │ ├── test_message_dialog.xml │ ├── test_movie.xml │ ├── test_music.xml │ ├── test_progress.xml │ ├── test_question_dialog.xml │ ├── test_resize.xml │ ├── test_selection.xml │ ├── test_slider.xml │ ├── test_tabbed.xml │ ├── test_table.xml │ ├── test_text_render.xml │ ├── test_ti.xml │ └── test_xhtml.xml │ └── wydget │ ├── __init__.py │ ├── anim.py │ ├── clipboard │ ├── __init__.py │ ├── carbon.py │ ├── win32.py │ └── xlib.py │ ├── data.py │ ├── data │ ├── media-pause.png │ ├── media-play.png │ ├── media-position.png │ ├── media-range.png │ ├── slider-arrow-down.png │ ├── slider-arrow-left.png │ ├── slider-arrow-right.png │ └── slider-arrow-up.png │ ├── dialogs │ ├── __init__.py │ ├── base.py │ ├── file.py │ └── question.py │ ├── dragndrop.py │ ├── element.py │ ├── event.py │ ├── layouts.py │ ├── loadxml.py │ ├── style.py │ ├── util.py │ └── widgets │ ├── __init__.py │ ├── button.py │ ├── checkbox.py │ ├── drawer.py │ ├── frame.py │ ├── label.py │ ├── menu.py │ ├── movie.py │ ├── music.py │ ├── progress.py │ ├── selection.py │ ├── slider.py │ ├── table.py │ └── textline.py ├── doc ├── Makefile ├── README ├── _build │ ├── .buildinfo │ ├── .doctrees │ │ ├── environment.pickle │ │ ├── index.doctree │ │ ├── internal │ │ │ ├── dist.doctree │ │ │ ├── doc.doctree │ │ │ ├── doc_generation.doctree │ │ │ ├── generated.doctree │ │ │ ├── gl.doctree │ │ │ ├── main.doctree │ │ │ └── wraptypes.doctree │ │ └── programming_guide │ │ │ ├── advanced.doctree │ │ │ ├── context.doctree │ │ │ ├── debug.doctree │ │ │ ├── distribution.doctree │ │ │ ├── eventloop.doctree │ │ │ ├── events.doctree │ │ │ ├── features1.1.doctree │ │ │ ├── gl.doctree │ │ │ ├── graphics.doctree │ │ │ ├── image.doctree │ │ │ ├── index.doctree │ │ │ ├── input.doctree │ │ │ ├── installation.doctree │ │ │ ├── keyboard.doctree │ │ │ ├── media.doctree │ │ │ ├── mouse.doctree │ │ │ ├── quickstart.doctree │ │ │ ├── resources.doctree │ │ │ ├── text.doctree │ │ │ ├── time.doctree │ │ │ └── windowing.doctree │ ├── _images │ │ ├── abstract_image.svg │ │ ├── buffer_image.svg │ │ ├── context_flow.svg │ │ ├── cursor_mac_crosshair.png │ │ ├── cursor_mac_default.png │ │ ├── cursor_mac_hand.png │ │ ├── cursor_mac_no.png │ │ ├── cursor_mac_size_down.png │ │ ├── cursor_mac_size_left.png │ │ ├── cursor_mac_size_left_right.png │ │ ├── cursor_mac_size_right.png │ │ ├── cursor_mac_size_up.png │ │ ├── cursor_mac_size_up_down.png │ │ ├── cursor_mac_text.png │ │ ├── cursor_mac_wait.png │ │ ├── cursor_win_crosshair.png │ │ ├── cursor_win_default.png │ │ ├── cursor_win_hand.png │ │ ├── cursor_win_help.png │ │ ├── cursor_win_no.png │ │ ├── cursor_win_size.png │ │ ├── cursor_win_size_left_right.png │ │ ├── cursor_win_size_nesw.png │ │ ├── cursor_win_size_nwse.png │ │ ├── cursor_win_size_up_down.png │ │ ├── cursor_win_text.png │ │ ├── cursor_win_wait.png │ │ ├── cursor_win_wait_arrow.png │ │ ├── explosion.png │ │ ├── font_metrics.svg │ │ ├── image_grid.svg │ │ ├── image_sequence.svg │ │ ├── mouse_coordinates.svg │ │ ├── screens.svg │ │ ├── text_classes.svg │ │ ├── window_location.svg │ │ ├── window_osx_default.png │ │ ├── window_osx_dialog.png │ │ ├── window_osx_tool.png │ │ ├── window_xp_default.png │ │ ├── window_xp_dialog.png │ │ └── window_xp_tool.png │ ├── _sources │ │ ├── index.txt │ │ ├── internal │ │ │ ├── dist.txt │ │ │ ├── doc.txt │ │ │ ├── doc_generation.txt │ │ │ ├── generated.txt │ │ │ ├── gl.txt │ │ │ ├── main.txt │ │ │ └── wraptypes.txt │ │ └── programming_guide │ │ │ ├── advanced.txt │ │ │ ├── context.txt │ │ │ ├── debug.txt │ │ │ ├── distribution.txt │ │ │ ├── eventloop.txt │ │ │ ├── events.txt │ │ │ ├── features1.1.txt │ │ │ ├── gl.txt │ │ │ ├── graphics.txt │ │ │ ├── image.txt │ │ │ ├── index.txt │ │ │ ├── input.txt │ │ │ ├── installation.txt │ │ │ ├── keyboard.txt │ │ │ ├── media.txt │ │ │ ├── mouse.txt │ │ │ ├── quickstart.txt │ │ │ ├── resources.txt │ │ │ ├── text.txt │ │ │ ├── time.txt │ │ │ └── windowing.txt │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── default.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── favicon.ico │ │ ├── file.png │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery.js │ │ ├── js │ │ │ └── theme.js │ │ ├── logo.png │ │ ├── logo5.svg │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── relatedlogo.png │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ ├── genindex-O.html │ ├── genindex-P.html │ ├── genindex-V.html │ ├── genindex-all.html │ ├── genindex.html │ ├── index.html │ ├── internal │ │ ├── dist.html │ │ ├── doc.html │ │ ├── doc_generation.html │ │ ├── generated.html │ │ ├── gl.html │ │ ├── main.html │ │ └── wraptypes.html │ ├── objects.inv │ ├── programming_guide │ │ ├── advanced.html │ │ ├── context.html │ │ ├── debug.html │ │ ├── distribution.html │ │ ├── eventloop.html │ │ ├── events.html │ │ ├── features1.1.html │ │ ├── gl.html │ │ ├── graphics.html │ │ ├── image.html │ │ ├── index.html │ │ ├── input.html │ │ ├── installation.html │ │ ├── keyboard.html │ │ ├── media.html │ │ ├── mouse.html │ │ ├── quickstart.html │ │ ├── resources.html │ │ ├── text.html │ │ ├── time.html │ │ └── windowing.html │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── _static │ ├── favicon.ico │ ├── logo.png │ ├── logo5.svg │ └── relatedlogo.png ├── _templates │ ├── base.rst │ ├── class.rst │ ├── exception.rst │ ├── function.rst │ ├── module.rst │ └── package.rst ├── conf.py ├── ext_ │ ├── __init__.py │ ├── autosummary │ │ ├── __init__.py │ │ └── generate.py │ ├── docstrings.py │ ├── sphinx_mod.py │ └── theme │ │ └── pyglet │ │ ├── layout.html │ │ ├── static │ │ ├── basic.css_t │ │ └── pyglet.css_t │ │ └── theme.conf ├── index.txt ├── internal │ ├── dist.txt │ ├── doc.txt │ ├── doc_generation.txt │ ├── generated.txt │ ├── gl.txt │ ├── main.txt │ ├── wraptypes-class.svg │ └── wraptypes.txt ├── make.bat ├── programming_guide │ ├── abstract_image.svg │ ├── advanced.txt │ ├── buffer_image.svg │ ├── context.txt │ ├── context_flow.svg │ ├── cursor_mac_crosshair.png │ ├── cursor_mac_default.png │ ├── cursor_mac_hand.png │ ├── cursor_mac_no.png │ ├── cursor_mac_size_down.png │ ├── cursor_mac_size_left.png │ ├── cursor_mac_size_left_right.png │ ├── cursor_mac_size_right.png │ ├── cursor_mac_size_up.png │ ├── cursor_mac_size_up_down.png │ ├── cursor_mac_text.png │ ├── cursor_mac_wait.png │ ├── cursor_win_crosshair.png │ ├── cursor_win_default.png │ ├── cursor_win_hand.png │ ├── cursor_win_help.png │ ├── cursor_win_no.png │ ├── cursor_win_size.png │ ├── cursor_win_size_left_right.png │ ├── cursor_win_size_nesw.png │ ├── cursor_win_size_nwse.png │ ├── cursor_win_size_up_down.png │ ├── cursor_win_text.png │ ├── cursor_win_wait.png │ ├── cursor_win_wait_arrow.png │ ├── debug.txt │ ├── distribution.txt │ ├── eventloop.txt │ ├── events.txt │ ├── explosion.png │ ├── features1.1.txt │ ├── font_metrics.svg │ ├── gl.txt │ ├── graphics.txt │ ├── image.txt │ ├── image_classes.svg │ ├── image_grid.svg │ ├── image_sequence.svg │ ├── index.txt │ ├── input.txt │ ├── installation.txt │ ├── keyboard.txt │ ├── media.txt │ ├── mouse.txt │ ├── mouse_coordinates.svg │ ├── quickstart.txt │ ├── resources.txt │ ├── screens.svg │ ├── text.txt │ ├── text_classes.svg │ ├── time.txt │ ├── window_location.svg │ ├── window_osx_default.png │ ├── window_osx_dialog.png │ ├── window_osx_tool.png │ ├── window_xp_default.png │ ├── window_xp_dialog.png │ ├── window_xp_tool.png │ └── windowing.txt └── upload-doc-current.sh ├── examples ├── anim │ ├── 0001.png │ ├── 0002.png │ ├── 0003.png │ ├── 0004.png │ ├── 0005.png │ ├── 0006.png │ ├── 0007.png │ ├── 0008.png │ ├── 0009.png │ ├── 0010.png │ ├── 0011.png │ ├── 0012.png │ ├── 0013.png │ ├── 0014.png │ ├── 0015.png │ ├── 0016.png │ ├── 0017.png │ ├── 0018.png │ ├── 0019.png │ ├── 0020.png │ ├── Thumbs.db │ └── anim.py ├── apple_remote.py ├── apple_remote_demo.py ├── astraea │ ├── README │ ├── assets │ │ ├── app.icns │ │ ├── app.ico │ │ └── ship.svg │ ├── astraea.py │ ├── res │ │ ├── Thumbs.db │ │ ├── asteroid1.png │ │ ├── asteroid2.png │ │ ├── asteroid3.png │ │ ├── bullet.png │ │ ├── bullet.wav │ │ ├── explosion.png │ │ ├── explosion.wav │ │ ├── pointer.png │ │ ├── ship.png │ │ ├── smoke.png │ │ ├── starfield.jpg │ │ └── starfield.png │ └── setup.py ├── events.py ├── fixed_resolution.py ├── font_comparison.py ├── graphics.py ├── html_label.py ├── image_convert.py ├── image_display.py ├── input.py ├── joystick.py ├── media_info.py ├── media_player.py ├── multiple_windows.py ├── noisy │ ├── README │ ├── ball.png │ ├── ball.wav │ └── noisy.py ├── opengl.py ├── opengl_3.py ├── particles.py ├── programming_guide │ ├── animation.py │ ├── dinosaur.gif │ ├── events.py │ ├── hello_world.py │ ├── image_viewer.py │ ├── kitten.jpg │ └── window_subclass.py ├── pyglet.png ├── show_input.py ├── soundspace │ ├── README │ ├── reader.py │ ├── res │ │ ├── bass.ogg │ │ ├── drums.ogg │ │ ├── guitar.ogg │ │ ├── piano.ogg │ │ └── space.txt │ └── soundspace.py ├── tablet.py ├── text_input.py ├── timer.py ├── video.py └── window_platform_event.py ├── make.py ├── pyglet ├── __init__.py ├── app │ ├── __init__.py │ ├── base.py │ ├── cocoa.py │ ├── win32.py │ └── xlib.py ├── canvas │ ├── __init__.py │ ├── base.py │ ├── cocoa.py │ ├── win32.py │ ├── xlib.py │ └── xlib_vidmoderestore.py ├── clock.py ├── com.py ├── compat.py ├── event.py ├── font │ ├── __init__.py │ ├── base.py │ ├── freetype.py │ ├── freetype_lib.py │ ├── quartz.py │ ├── ttf.py │ ├── win32.py │ └── win32query.py ├── gl │ ├── __init__.py │ ├── agl.py │ ├── base.py │ ├── cocoa.py │ ├── gl.py │ ├── gl_info.py │ ├── glext_arb.py │ ├── glext_nv.py │ ├── glu.py │ ├── glu_info.py │ ├── glx.py │ ├── glx_info.py │ ├── glxext_arb.py │ ├── glxext_mesa.py │ ├── glxext_nv.py │ ├── lib.py │ ├── lib_agl.py │ ├── lib_glx.py │ ├── lib_wgl.py │ ├── wgl.py │ ├── wgl_info.py │ ├── wglext_arb.py │ ├── wglext_nv.py │ ├── win32.py │ └── xlib.py ├── graphics │ ├── __init__.py │ ├── allocation.py │ ├── vertexattribute.py │ ├── vertexbuffer.py │ └── vertexdomain.py ├── image │ ├── __init__.py │ ├── atlas.py │ └── codecs │ │ ├── __init__.py │ │ ├── bmp.py │ │ ├── dds.py │ │ ├── gdiplus.py │ │ ├── gdkpixbuf2.py │ │ ├── gif.py │ │ ├── pil.py │ │ ├── png.py │ │ ├── pypng.py │ │ ├── pypng_.py │ │ ├── quartz.py │ │ └── s3tc.py ├── info.py ├── input │ ├── __init__.py │ ├── base.py │ ├── darwin_hid.py │ ├── directinput.py │ ├── evdev.py │ ├── evdev_constants.py │ ├── wintab.py │ ├── x11_xinput.py │ └── x11_xinput_tablet.py ├── lib.py ├── libs │ ├── __init__.py │ ├── darwin │ │ ├── __init__.py │ │ ├── cocoapy │ │ │ ├── __init__.py │ │ │ ├── cocoalibs.py │ │ │ ├── cocoatypes.py │ │ │ └── runtime.py │ │ ├── constants.py │ │ ├── quartzkey.py │ │ └── types.py │ ├── win32 │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── dinput.py │ │ ├── libwintab.py │ │ ├── types.py │ │ └── winkey.py │ └── x11 │ │ ├── __init__.py │ │ ├── cursorfont.py │ │ ├── xf86vmode.py │ │ ├── xinerama.py │ │ ├── xinput.py │ │ ├── xlib.py │ │ └── xsync.py ├── math_.py ├── media │ ├── __init__.py │ ├── avbin.py │ ├── drivers │ │ ├── __init__.py │ │ ├── directsound │ │ │ ├── __init__.py │ │ │ └── lib_dsound.py │ │ ├── openal │ │ │ ├── __init__.py │ │ │ ├── lib_alc.py │ │ │ └── lib_openal.py │ │ ├── pulse │ │ │ ├── __init__.py │ │ │ └── lib_pulseaudio.py │ │ └── silent.py │ ├── procedural.py │ └── riff.py ├── resource.py ├── sprite.py ├── text │ ├── __init__.py │ ├── caret.py │ ├── document.py │ ├── formats │ │ ├── __init__.py │ │ ├── attributed.py │ │ ├── html.py │ │ ├── plaintext.py │ │ └── structured.py │ ├── layout.py │ └── runlist.py └── window │ ├── __init__.py │ ├── cocoa │ ├── __init__.py │ ├── pyglet_delegate.py │ ├── pyglet_textview.py │ ├── pyglet_view.py │ ├── pyglet_window.py │ └── systemcursor.py │ ├── event.py │ ├── key.py │ ├── mouse.py │ ├── win32 │ └── __init__.py │ └── xlib │ └── __init__.py ├── setup.py ├── tests ├── __init__.py ├── benchmarks │ ├── benchmark_heapq_clock.py │ └── clocklegacy.py ├── broken │ └── context_share.py ├── data │ └── images │ │ ├── 8bpp.gif │ │ ├── l.png │ │ ├── la.png │ │ ├── rgb.png │ │ ├── rgb_16bpp.bmp │ │ ├── rgb_1bpp.bmp │ │ ├── rgb_24bpp.bmp │ │ ├── rgb_32bpp.bmp │ │ ├── rgb_4bpp.bmp │ │ ├── rgb_8bpp.bmp │ │ ├── rgb_8bpp.png │ │ ├── rgb_8bpp_trans.png │ │ ├── rgb_dxt1.dds │ │ ├── rgba.png │ │ ├── rgba_32bpp.bmp │ │ ├── rgba_dxt1.dds │ │ ├── rgba_dxt3.dds │ │ └── rgba_dxt5.dds ├── interactive │ ├── __init__.py │ ├── font │ │ ├── align_multiline.py │ │ ├── base_text.py │ │ ├── bullet.py │ │ ├── color.py │ │ ├── color_blend.py │ │ ├── default.py │ │ ├── halign.py │ │ ├── have_font.py │ │ ├── horizontal_metrics.py │ │ ├── oterh │ │ │ ├── __init__.py │ │ │ ├── action_man.ttf │ │ │ ├── action_man_bold.ttf │ │ │ ├── action_man_bold_italic.ttf │ │ │ ├── action_man_italic.ttf │ │ │ ├── add_font.py │ │ │ └── readme │ │ ├── set_dpi.py │ │ ├── system.py │ │ ├── valign.py │ │ └── wrap_invariant.py │ ├── image │ │ ├── base_load.py │ │ ├── base_save.py │ │ ├── buffer_copy.py │ │ ├── buffer_save.py │ │ ├── checkerboard.py │ │ ├── depth_save.py │ │ ├── matrix_rgb.py │ │ ├── matrix_rgba.py │ │ ├── platform_l_load.py │ │ ├── platform_la_load.py │ │ ├── platform_rgb_load.py │ │ ├── platform_rgba_load.py │ │ ├── texture_3d.py │ │ ├── texture_base.py │ │ └── texture_grid.py │ ├── image_tests │ │ └── __init__.py │ ├── import_tests.py │ ├── plan.txt │ ├── player_tests.py │ ├── regression_tests │ │ ├── __init__.py │ │ └── images │ │ │ ├── deleteme │ │ │ ├── image.buffer_save.png │ │ │ ├── image.checkerboard.png │ │ │ ├── image.dds_dxt5_load.png │ │ │ ├── image.depth_save.png │ │ │ ├── image.pil_l_load.png │ │ │ ├── image.pil_l_save.png │ │ │ ├── image.pil_la_load.png │ │ │ ├── image.pil_la_save.png │ │ │ ├── image.pil_rgb_load.png │ │ │ ├── image.pil_rgb_save.png │ │ │ ├── image.pil_rgba_load.png │ │ │ ├── image.pil_rgba_save.png │ │ │ ├── image.platform_l_load.png │ │ │ ├── image.platform_la_load.png │ │ │ ├── image.platform_rgb_load.png │ │ │ ├── image.platform_rgba_load.png │ │ │ ├── image.pypng_l_load.png │ │ │ ├── image.pypng_l_save.png │ │ │ ├── image.pypng_la_load.png │ │ │ ├── image.pypng_la_save.png │ │ │ ├── image.pypng_rgb_load.png │ │ │ ├── image.pypng_rgb_save.png │ │ │ ├── image.pypng_rgba_load.png │ │ │ ├── image.pypng_rgba_save.png │ │ │ └── image.stencil_save.png │ ├── resource │ │ ├── res_load_image.py │ │ └── rgbm.png │ ├── test.py │ ├── text │ │ ├── content_valign_bottom.py │ │ ├── content_valign_center.py │ │ ├── element.py │ │ ├── element_change_style.py │ │ ├── html.py │ │ ├── multiline_wrap.py │ │ ├── plain.py │ │ └── style.py │ └── window │ │ ├── __init__.py │ │ ├── _window_caption.py │ │ ├── base_event_sequence.py │ │ ├── cursor.png │ │ ├── event_activate_deactivate.py │ │ ├── event_button.py │ │ ├── event_close.py │ │ ├── event_expose.py │ │ ├── event_key.py │ │ ├── event_mouse_drag.py │ │ ├── event_mouse_enter_leave.py │ │ ├── event_mouse_motion.py │ │ ├── event_mouse_scroll.py │ │ ├── event_move.py │ │ ├── event_resize.py │ │ ├── event_sequence_create.py │ │ ├── event_sequence_create_fullscreen.py │ │ ├── event_sequence_set_fullscreen.py │ │ ├── event_sequence_show.py │ │ ├── event_sequence_unset_fullscreen.py │ │ ├── event_show_hide.py │ │ ├── event_text.py │ │ ├── icon1.png │ │ ├── icon_size1.png │ │ ├── icon_size2.png │ │ ├── icon_size3.png │ │ ├── icon_size4.png │ │ ├── icon_size5.png │ │ ├── mode_switch.py │ │ ├── multiple_screen.py │ │ ├── multiple_window_open.py │ │ ├── test_mouse_on_windows_corners.py │ │ ├── window_activate.py │ │ ├── window_fixed_set_size.py │ │ ├── window_fullscreen_size.py │ │ ├── window_initial_fullscreen.py │ │ ├── window_minimize_maximize.py │ │ ├── window_multisample.py │ │ ├── window_open.py │ │ ├── window_resizable.py │ │ ├── window_set_exclusive_keyboard.py │ │ ├── window_set_exclusive_mouse.py │ │ ├── window_set_fullscreen.py │ │ ├── window_set_icon.py │ │ ├── window_set_icon_sizes.py │ │ ├── window_set_location.py │ │ ├── window_set_min_max_size.py │ │ ├── window_set_mouse_cursor.py │ │ ├── window_set_mouse_system_cursor.py │ │ ├── window_set_mouse_visible.py │ │ ├── window_set_size.py │ │ ├── window_set_visible.py │ │ ├── window_set_vsync.py │ │ ├── window_style_borderless.py │ │ ├── window_style_dialog.py │ │ ├── window_style_tool.py │ │ └── window_util.py ├── readme.md └── unittests │ ├── __init__.py │ ├── integration │ ├── __init__.py │ ├── event_loop.py │ ├── graphics_tests │ │ ├── __init__.py │ │ ├── graphics_allocation.py │ │ ├── graphics_common.py │ │ └── multitexture.py │ ├── image_codec_tests.py │ ├── resource_tests │ │ ├── __init__.py │ │ ├── dir1 │ │ │ ├── dir1 │ │ │ │ └── file.txt │ │ │ ├── file.txt │ │ │ └── res.zip │ │ ├── dir2 │ │ │ └── file.txt │ │ ├── file.txt │ │ └── res_load.py │ └── text_tests │ │ ├── __init__.py │ │ ├── empty.py │ │ └── empty_bold.py │ ├── test_atlas.py │ ├── test_clock.py │ ├── test_events.py │ ├── test_media.py │ ├── test_osx.py │ ├── test_resource.py │ └── test_text.py ├── tools ├── al_info.py ├── convert.py ├── ddsview.py ├── gendist.sh ├── gengl.py ├── genmap.py ├── genmpkg │ ├── bdist_mpkg_pyglet │ │ ├── README │ │ ├── __init__.py │ │ ├── cmd_bdist_mpkg.py │ │ ├── pkg.py │ │ ├── plists.py │ │ ├── script_bdist_mpkg.py │ │ ├── templates.py │ │ ├── tools.py │ │ └── util.py │ ├── genmpkg.sh │ └── res │ │ ├── background.pdf │ │ └── readme.rtf ├── genmsi │ ├── genmsi.py │ ├── pyglet.in.wxs │ └── res │ │ ├── banner.bmp │ │ ├── info.ico │ │ └── readme.rtf ├── genwrappers.py ├── gl_info.py ├── inspect_font.py ├── license.py ├── upload │ ├── descriptions.txt │ ├── googlecode_upload.py │ └── upload.py ├── wgl.h └── wraptypes │ ├── __init__.py │ ├── cparser.py │ ├── ctypesparser.py │ ├── lex.py │ ├── preprocessor.py │ ├── wrap.py │ └── yacc.py └── website ├── contribute.xml ├── documentation.xml ├── download.xml ├── favicon.ico ├── favicon.png ├── genwebsite.py ├── index.xml ├── logo_large.png ├── news-items.xml ├── news.xml ├── pyglet.css ├── pyglet.js ├── template.xhtml ├── update-all.php ├── upload-website.sh └── wiki-archive ├── audio.txt ├── faq.txt ├── gl.txt ├── gui.txt ├── images.txt ├── known_good_configurations.txt ├── package_dependencies.txt ├── package_organisation.txt ├── projection.txt ├── release_schedule.txt ├── sprites_and_tiles.txt ├── start.txt ├── text_and_layout.txt ├── windowing.txt └── xml_resources.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/CHANGELOG -------------------------------------------------------------------------------- /DESIGN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/DESIGN -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/NOTICE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/README -------------------------------------------------------------------------------- /contrib/experimental/avcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/avcodec.py -------------------------------------------------------------------------------- /contrib/experimental/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/blend.py -------------------------------------------------------------------------------- /contrib/experimental/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/blur.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/bars.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/doc.txt -------------------------------------------------------------------------------- /contrib/experimental/buffer/info.att: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/info.att -------------------------------------------------------------------------------- /contrib/experimental/buffer/sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/sprites.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/streamers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/streamers.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/test_image.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/test_immediate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/test_immediate.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/test_retained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/test_retained.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/text.py -------------------------------------------------------------------------------- /contrib/experimental/buffer/torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/buffer/torus.py -------------------------------------------------------------------------------- /contrib/experimental/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/console.py -------------------------------------------------------------------------------- /contrib/experimental/customwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/customwin.py -------------------------------------------------------------------------------- /contrib/experimental/dist_field/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/dist_field/README -------------------------------------------------------------------------------- /contrib/experimental/dist_field/genfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/dist_field/genfield.py -------------------------------------------------------------------------------- /contrib/experimental/dist_field/py.df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/dist_field/py.df.png -------------------------------------------------------------------------------- /contrib/experimental/dist_field/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/dist_field/py.png -------------------------------------------------------------------------------- /contrib/experimental/dist_field/renderfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/dist_field/renderfield.py -------------------------------------------------------------------------------- /contrib/experimental/hello_world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/hello_world.svg -------------------------------------------------------------------------------- /contrib/experimental/input/dinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/dinput.py -------------------------------------------------------------------------------- /contrib/experimental/input/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/input.py -------------------------------------------------------------------------------- /contrib/experimental/input/lib_xinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/lib_xinput.py -------------------------------------------------------------------------------- /contrib/experimental/input/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/linux.py -------------------------------------------------------------------------------- /contrib/experimental/input/linux_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/linux_const.py -------------------------------------------------------------------------------- /contrib/experimental/input/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/osx.py -------------------------------------------------------------------------------- /contrib/experimental/input/osx_tablet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/osx_tablet.py -------------------------------------------------------------------------------- /contrib/experimental/input/show_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/show_input.py -------------------------------------------------------------------------------- /contrib/experimental/input/tablet-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/tablet-notes.txt -------------------------------------------------------------------------------- /contrib/experimental/input/test_wintab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/test_wintab.py -------------------------------------------------------------------------------- /contrib/experimental/input/test_xinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/test_xinput.py -------------------------------------------------------------------------------- /contrib/experimental/input/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/usage.py -------------------------------------------------------------------------------- /contrib/experimental/input/wintab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/wintab.py -------------------------------------------------------------------------------- /contrib/experimental/input/xinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/input/xinput.py -------------------------------------------------------------------------------- /contrib/experimental/lib_avcodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/lib_avcodec.py -------------------------------------------------------------------------------- /contrib/experimental/lib_avformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/lib_avformat.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/fs.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/lib_xf86vmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/lib_xf86vmode.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/lib_xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/lib_xrandr.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/osx.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/setup_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/setup_path.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/win32device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/win32device.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/x11vmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/x11vmode.py -------------------------------------------------------------------------------- /contrib/experimental/modeswitch/xrandr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/modeswitch/xrandr.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/experimental/mt_media/drivers/silent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/drivers/silent.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/media_player.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_app_carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_app_carbon.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_app_win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_app_win32.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_app_xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_app_xlib.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_avbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_avbin.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_media.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/mt_procedural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/mt_procedural.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/setup_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/setup_path.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/test1.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/test2.py -------------------------------------------------------------------------------- /contrib/experimental/mt_media/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/mt_media/test_video.py -------------------------------------------------------------------------------- /contrib/experimental/ninepatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/ninepatch.py -------------------------------------------------------------------------------- /contrib/experimental/pinch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/pinch.py -------------------------------------------------------------------------------- /contrib/experimental/profile_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/profile_layout.py -------------------------------------------------------------------------------- /contrib/experimental/pulse/lib_pulseaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/pulse/lib_pulseaudio.py -------------------------------------------------------------------------------- /contrib/experimental/pulse/pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/pulse/pulse.py -------------------------------------------------------------------------------- /contrib/experimental/pulse/test_pulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/pulse/test_pulse.py -------------------------------------------------------------------------------- /contrib/experimental/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/rest.py -------------------------------------------------------------------------------- /contrib/experimental/shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/shader.py -------------------------------------------------------------------------------- /contrib/experimental/solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/solid.py -------------------------------------------------------------------------------- /contrib/experimental/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/sprite.py -------------------------------------------------------------------------------- /contrib/experimental/svg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/svg_test.py -------------------------------------------------------------------------------- /contrib/experimental/swigtypes/ffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/swigtypes/ffi.py -------------------------------------------------------------------------------- /contrib/experimental/swigtypes/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/swigtypes/parse.py -------------------------------------------------------------------------------- /contrib/experimental/swigtypes/swigtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/experimental/swigtypes/swigtypes.py -------------------------------------------------------------------------------- /contrib/logo3d/logo3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/logo3d/logo3d.jpg -------------------------------------------------------------------------------- /contrib/logo3d/logo3d.obj.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/logo3d/logo3d.obj.zip -------------------------------------------------------------------------------- /contrib/logo3d/logo3d.wings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/logo3d/logo3d.wings -------------------------------------------------------------------------------- /contrib/model/examples/euclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/examples/euclid.py -------------------------------------------------------------------------------- /contrib/model/examples/obj_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/examples/obj_test.py -------------------------------------------------------------------------------- /contrib/model/examples/rabbit.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/examples/rabbit.mtl -------------------------------------------------------------------------------- /contrib/model/examples/rabbit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/examples/rabbit.obj -------------------------------------------------------------------------------- /contrib/model/examples/tree_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/examples/tree_test.py -------------------------------------------------------------------------------- /contrib/model/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/model/model/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/model/geometric.py -------------------------------------------------------------------------------- /contrib/model/model/obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/model/obj.py -------------------------------------------------------------------------------- /contrib/model/model/obj_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/model/model/obj_batch.py -------------------------------------------------------------------------------- /contrib/projection/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/projection/projection.py -------------------------------------------------------------------------------- /contrib/projection/tests/projection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/scene2d/examples/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/car.png -------------------------------------------------------------------------------- /contrib/scene2d/examples/driving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/driving.py -------------------------------------------------------------------------------- /contrib/scene2d/examples/invader-sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/invader-sprites.png -------------------------------------------------------------------------------- /contrib/scene2d/examples/invaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/invaders.py -------------------------------------------------------------------------------- /contrib/scene2d/examples/invaders.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/invaders.xml -------------------------------------------------------------------------------- /contrib/scene2d/examples/keen_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/keen_intro.py -------------------------------------------------------------------------------- /contrib/scene2d/examples/ld24-lander/lander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/ld24-lander/lander.py -------------------------------------------------------------------------------- /contrib/scene2d/examples/ld24-lander/lander.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/ld24-lander/lander.xml -------------------------------------------------------------------------------- /contrib/scene2d/examples/ld24-lander/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/ld24-lander/sprites.png -------------------------------------------------------------------------------- /contrib/scene2d/examples/ld24-lander/sprites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/ld24-lander/sprites.svg -------------------------------------------------------------------------------- /contrib/scene2d/examples/ld24-lander/sprites.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/ld24-lander/sprites.xcf -------------------------------------------------------------------------------- /contrib/scene2d/examples/los.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/los.py -------------------------------------------------------------------------------- /contrib/scene2d/examples/road-map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/road-map.xml -------------------------------------------------------------------------------- /contrib/scene2d/examples/road-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/road-tiles.png -------------------------------------------------------------------------------- /contrib/scene2d/examples/road-tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/road-tiles.xml -------------------------------------------------------------------------------- /contrib/scene2d/examples/text_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/examples/text_wrap.py -------------------------------------------------------------------------------- /contrib/scene2d/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/resource.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/__init__.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/camera.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/debug.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/drawable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/drawable.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/event.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/image.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/map.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/sprite.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/textsprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/textsprite.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/tile.py -------------------------------------------------------------------------------- /contrib/scene2d/scene2d/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/scene2d/view.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/FLAT_OOB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/FLAT_OOB.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/FLAT_SCROLLING.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/FLAT_SCROLLING.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/FLAT_SPRITE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/FLAT_SPRITE.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/HEX_FLAT_DEBUG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/HEX_FLAT_DEBUG.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/HEX_FLAT_MOUSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/HEX_FLAT_MOUSE.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/LOAD_HEXMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/LOAD_HEXMAP.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/LOAD_RECTMAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/LOAD_RECTMAP.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/MAP_MODEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/MAP_MODEL.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/RECT_FLAT_DEBUG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/RECT_FLAT_DEBUG.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/RECT_FLAT_MOUSE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/RECT_FLAT_MOUSE.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/SPRITE_MODEL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/SPRITE_MODEL.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/SPRITE_OVERLAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/SPRITE_OVERLAP.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/VIEW_SUBWINDOW.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/VIEW_SUBWINDOW.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/ball.png -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/hexmap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/hexmap.xml -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/hextiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/hextiles.png -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/map.xml -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/render_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/render_base.py -------------------------------------------------------------------------------- /contrib/scene2d/tests/scene2d/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/scene2d/tests/scene2d/tiles.png -------------------------------------------------------------------------------- /contrib/spryte/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/ball.png -------------------------------------------------------------------------------- /contrib/spryte/balls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/balls.py -------------------------------------------------------------------------------- /contrib/spryte/boom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/boom.py -------------------------------------------------------------------------------- /contrib/spryte/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/car.png -------------------------------------------------------------------------------- /contrib/spryte/cars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/cars.py -------------------------------------------------------------------------------- /contrib/spryte/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/design.txt -------------------------------------------------------------------------------- /contrib/spryte/driving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/driving.py -------------------------------------------------------------------------------- /contrib/spryte/dtd/basic-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/dtd/basic-gun.png -------------------------------------------------------------------------------- /contrib/spryte/dtd/dtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/dtd/dtd.py -------------------------------------------------------------------------------- /contrib/spryte/dtd/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/dtd/path.py -------------------------------------------------------------------------------- /contrib/spryte/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/explosion.png -------------------------------------------------------------------------------- /contrib/spryte/los.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/los.py -------------------------------------------------------------------------------- /contrib/spryte/rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/rect.py -------------------------------------------------------------------------------- /contrib/spryte/road-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/road-tiles.png -------------------------------------------------------------------------------- /contrib/spryte/spryte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/spryte.py -------------------------------------------------------------------------------- /contrib/spryte/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/spryte/tests/test_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/tests/test_rect.py -------------------------------------------------------------------------------- /contrib/spryte/tilemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/tilemap.py -------------------------------------------------------------------------------- /contrib/spryte/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/spryte/view.py -------------------------------------------------------------------------------- /contrib/toys/euclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/toys/euclid.py -------------------------------------------------------------------------------- /contrib/toys/follow_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/toys/follow_mouse.py -------------------------------------------------------------------------------- /contrib/toys/primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/toys/primitives.py -------------------------------------------------------------------------------- /contrib/toys/thrust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/toys/thrust.py -------------------------------------------------------------------------------- /contrib/wydget/BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/BUGS -------------------------------------------------------------------------------- /contrib/wydget/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/LICENSE -------------------------------------------------------------------------------- /contrib/wydget/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/README -------------------------------------------------------------------------------- /contrib/wydget/doc/xml-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/doc/xml-format.txt -------------------------------------------------------------------------------- /contrib/wydget/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/run_tests.py -------------------------------------------------------------------------------- /contrib/wydget/tests/data/ball-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/data/ball-small.png -------------------------------------------------------------------------------- /contrib/wydget/tests/data/bg-100x19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/data/bg-100x19.png -------------------------------------------------------------------------------- /contrib/wydget/tests/data/bg-over-100x19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/data/bg-over-100x19.png -------------------------------------------------------------------------------- /contrib/wydget/tests/data/bg-pressed-100x19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/data/bg-pressed-100x19.png -------------------------------------------------------------------------------- /contrib/wydget/tests/data/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/data/kitten.jpg -------------------------------------------------------------------------------- /contrib/wydget/tests/test_active.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_active.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_button.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_combo_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_combo_box.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_drag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_drag.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_drawer.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_element.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_element.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_element_over.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_element_over.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_enabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_enabled.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_frame.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_label.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_label_direction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_label_direction.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout_form.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout_form.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout_grid.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout_horizontal.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout_sizing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout_sizing.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_layout_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_layout_vertical.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_menu.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_message_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_message_dialog.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_movie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_movie.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_music.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_music.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_progress.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_question_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_question_dialog.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_resize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_resize.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_selection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_selection.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_slider.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_tabbed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_tabbed.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_table.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_text_render.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_text_render.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_ti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_ti.xml -------------------------------------------------------------------------------- /contrib/wydget/tests/test_xhtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/tests/test_xhtml.xml -------------------------------------------------------------------------------- /contrib/wydget/wydget/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/__init__.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/anim.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/clipboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/clipboard/__init__.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/clipboard/carbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/clipboard/carbon.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/clipboard/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/clipboard/win32.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/clipboard/xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/clipboard/xlib.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/media-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/media-pause.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/media-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/media-play.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/media-position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/media-position.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/media-range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/media-range.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/slider-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/slider-arrow-down.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/slider-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/slider-arrow-left.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/data/slider-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/data/slider-arrow-up.png -------------------------------------------------------------------------------- /contrib/wydget/wydget/dialogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/dialogs/__init__.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/dialogs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/dialogs/base.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/dialogs/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/dialogs/file.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/dialogs/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/dialogs/question.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/dragndrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/dragndrop.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/element.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/event.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/layouts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/layouts.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/loadxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/loadxml.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/style.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/util.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/__init__.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/button.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/checkbox.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/drawer.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/frame.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/label.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/menu.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/movie.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/music.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/progress.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/selection.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/slider.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/table.py -------------------------------------------------------------------------------- /contrib/wydget/wydget/widgets/textline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/contrib/wydget/wydget/widgets/textline.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/README -------------------------------------------------------------------------------- /doc/_build/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.buildinfo -------------------------------------------------------------------------------- /doc/_build/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/environment.pickle -------------------------------------------------------------------------------- /doc/_build/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/index.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/dist.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/dist.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/doc.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/doc.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/generated.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/generated.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/gl.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/gl.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/main.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/main.doctree -------------------------------------------------------------------------------- /doc/_build/.doctrees/internal/wraptypes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/.doctrees/internal/wraptypes.doctree -------------------------------------------------------------------------------- /doc/_build/_images/abstract_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/abstract_image.svg -------------------------------------------------------------------------------- /doc/_build/_images/buffer_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/buffer_image.svg -------------------------------------------------------------------------------- /doc/_build/_images/context_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/context_flow.svg -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_crosshair.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_default.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_hand.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_no.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_size_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_size_down.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_size_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_size_left.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_size_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_size_right.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_size_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_size_up.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_size_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_size_up_down.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_text.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_mac_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_mac_wait.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_crosshair.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_default.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_hand.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_help.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_no.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_size.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_size_nesw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_size_nesw.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_size_nwse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_size_nwse.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_size_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_size_up_down.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_text.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_wait.png -------------------------------------------------------------------------------- /doc/_build/_images/cursor_win_wait_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/cursor_win_wait_arrow.png -------------------------------------------------------------------------------- /doc/_build/_images/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/explosion.png -------------------------------------------------------------------------------- /doc/_build/_images/font_metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/font_metrics.svg -------------------------------------------------------------------------------- /doc/_build/_images/image_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/image_grid.svg -------------------------------------------------------------------------------- /doc/_build/_images/image_sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/image_sequence.svg -------------------------------------------------------------------------------- /doc/_build/_images/mouse_coordinates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/mouse_coordinates.svg -------------------------------------------------------------------------------- /doc/_build/_images/screens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/screens.svg -------------------------------------------------------------------------------- /doc/_build/_images/text_classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/text_classes.svg -------------------------------------------------------------------------------- /doc/_build/_images/window_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_location.svg -------------------------------------------------------------------------------- /doc/_build/_images/window_osx_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_osx_default.png -------------------------------------------------------------------------------- /doc/_build/_images/window_osx_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_osx_dialog.png -------------------------------------------------------------------------------- /doc/_build/_images/window_osx_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_osx_tool.png -------------------------------------------------------------------------------- /doc/_build/_images/window_xp_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_xp_default.png -------------------------------------------------------------------------------- /doc/_build/_images/window_xp_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_xp_dialog.png -------------------------------------------------------------------------------- /doc/_build/_images/window_xp_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_images/window_xp_tool.png -------------------------------------------------------------------------------- /doc/_build/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/index.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/dist.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/doc.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/doc_generation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/doc_generation.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/generated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/generated.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/gl.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/main.txt -------------------------------------------------------------------------------- /doc/_build/_sources/internal/wraptypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/internal/wraptypes.txt -------------------------------------------------------------------------------- /doc/_build/_sources/programming_guide/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/programming_guide/gl.txt -------------------------------------------------------------------------------- /doc/_build/_sources/programming_guide/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/programming_guide/text.txt -------------------------------------------------------------------------------- /doc/_build/_sources/programming_guide/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_sources/programming_guide/time.txt -------------------------------------------------------------------------------- /doc/_build/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/ajax-loader.gif -------------------------------------------------------------------------------- /doc/_build/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/basic.css -------------------------------------------------------------------------------- /doc/_build/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/comment-bright.png -------------------------------------------------------------------------------- /doc/_build/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/comment-close.png -------------------------------------------------------------------------------- /doc/_build/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/comment.png -------------------------------------------------------------------------------- /doc/_build/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/css/badge_only.css -------------------------------------------------------------------------------- /doc/_build/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/css/theme.css -------------------------------------------------------------------------------- /doc/_build/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/default.css -------------------------------------------------------------------------------- /doc/_build/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/doctools.js -------------------------------------------------------------------------------- /doc/_build/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/down-pressed.png -------------------------------------------------------------------------------- /doc/_build/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/down.png -------------------------------------------------------------------------------- /doc/_build/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_build/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/file.png -------------------------------------------------------------------------------- /doc/_build/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/jquery.js -------------------------------------------------------------------------------- /doc/_build/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/js/theme.js -------------------------------------------------------------------------------- /doc/_build/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/logo.png -------------------------------------------------------------------------------- /doc/_build/_static/logo5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/logo5.svg -------------------------------------------------------------------------------- /doc/_build/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/minus.png -------------------------------------------------------------------------------- /doc/_build/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/plus.png -------------------------------------------------------------------------------- /doc/_build/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/pygments.css -------------------------------------------------------------------------------- /doc/_build/_static/relatedlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/relatedlogo.png -------------------------------------------------------------------------------- /doc/_build/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/searchtools.js -------------------------------------------------------------------------------- /doc/_build/_static/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/sidebar.js -------------------------------------------------------------------------------- /doc/_build/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/underscore.js -------------------------------------------------------------------------------- /doc/_build/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/up-pressed.png -------------------------------------------------------------------------------- /doc/_build/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/up.png -------------------------------------------------------------------------------- /doc/_build/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/_static/websupport.js -------------------------------------------------------------------------------- /doc/_build/genindex-O.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/genindex-O.html -------------------------------------------------------------------------------- /doc/_build/genindex-P.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/genindex-P.html -------------------------------------------------------------------------------- /doc/_build/genindex-V.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/genindex-V.html -------------------------------------------------------------------------------- /doc/_build/genindex-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/genindex-all.html -------------------------------------------------------------------------------- /doc/_build/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/genindex.html -------------------------------------------------------------------------------- /doc/_build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/index.html -------------------------------------------------------------------------------- /doc/_build/internal/dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/dist.html -------------------------------------------------------------------------------- /doc/_build/internal/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/doc.html -------------------------------------------------------------------------------- /doc/_build/internal/doc_generation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/doc_generation.html -------------------------------------------------------------------------------- /doc/_build/internal/generated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/generated.html -------------------------------------------------------------------------------- /doc/_build/internal/gl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/gl.html -------------------------------------------------------------------------------- /doc/_build/internal/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/main.html -------------------------------------------------------------------------------- /doc/_build/internal/wraptypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/internal/wraptypes.html -------------------------------------------------------------------------------- /doc/_build/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/objects.inv -------------------------------------------------------------------------------- /doc/_build/programming_guide/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/advanced.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/context.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/debug.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/distribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/distribution.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/eventloop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/eventloop.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/events.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/features1.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/features1.1.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/gl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/gl.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/graphics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/graphics.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/image.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/index.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/input.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/installation.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/keyboard.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/media.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/mouse.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/quickstart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/quickstart.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/resources.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/text.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/time.html -------------------------------------------------------------------------------- /doc/_build/programming_guide/windowing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/programming_guide/windowing.html -------------------------------------------------------------------------------- /doc/_build/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/py-modindex.html -------------------------------------------------------------------------------- /doc/_build/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/search.html -------------------------------------------------------------------------------- /doc/_build/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_build/searchindex.js -------------------------------------------------------------------------------- /doc/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_static/favicon.ico -------------------------------------------------------------------------------- /doc/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_static/logo.png -------------------------------------------------------------------------------- /doc/_static/logo5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_static/logo5.svg -------------------------------------------------------------------------------- /doc/_static/relatedlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_static/relatedlogo.png -------------------------------------------------------------------------------- /doc/_templates/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/base.rst -------------------------------------------------------------------------------- /doc/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/class.rst -------------------------------------------------------------------------------- /doc/_templates/exception.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/exception.rst -------------------------------------------------------------------------------- /doc/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/function.rst -------------------------------------------------------------------------------- /doc/_templates/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/module.rst -------------------------------------------------------------------------------- /doc/_templates/package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/_templates/package.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/ext_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/ext_/autosummary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/autosummary/__init__.py -------------------------------------------------------------------------------- /doc/ext_/autosummary/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/autosummary/generate.py -------------------------------------------------------------------------------- /doc/ext_/docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/docstrings.py -------------------------------------------------------------------------------- /doc/ext_/sphinx_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/sphinx_mod.py -------------------------------------------------------------------------------- /doc/ext_/theme/pyglet/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/theme/pyglet/layout.html -------------------------------------------------------------------------------- /doc/ext_/theme/pyglet/static/basic.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/theme/pyglet/static/basic.css_t -------------------------------------------------------------------------------- /doc/ext_/theme/pyglet/static/pyglet.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/theme/pyglet/static/pyglet.css_t -------------------------------------------------------------------------------- /doc/ext_/theme/pyglet/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/ext_/theme/pyglet/theme.conf -------------------------------------------------------------------------------- /doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/index.txt -------------------------------------------------------------------------------- /doc/internal/dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/dist.txt -------------------------------------------------------------------------------- /doc/internal/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/doc.txt -------------------------------------------------------------------------------- /doc/internal/doc_generation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/doc_generation.txt -------------------------------------------------------------------------------- /doc/internal/generated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/generated.txt -------------------------------------------------------------------------------- /doc/internal/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/gl.txt -------------------------------------------------------------------------------- /doc/internal/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/main.txt -------------------------------------------------------------------------------- /doc/internal/wraptypes-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/wraptypes-class.svg -------------------------------------------------------------------------------- /doc/internal/wraptypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/internal/wraptypes.txt -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/programming_guide/abstract_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/abstract_image.svg -------------------------------------------------------------------------------- /doc/programming_guide/advanced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/advanced.txt -------------------------------------------------------------------------------- /doc/programming_guide/buffer_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/buffer_image.svg -------------------------------------------------------------------------------- /doc/programming_guide/context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/context.txt -------------------------------------------------------------------------------- /doc/programming_guide/context_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/context_flow.svg -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_crosshair.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_default.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_hand.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_no.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_size_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_size_down.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_size_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_size_left.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_size_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_size_up.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_text.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_mac_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_mac_wait.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_crosshair.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_default.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_hand.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_help.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_no.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_size.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_size_nesw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_size_nesw.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_size_nwse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_size_nwse.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_text.png -------------------------------------------------------------------------------- /doc/programming_guide/cursor_win_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/cursor_win_wait.png -------------------------------------------------------------------------------- /doc/programming_guide/debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/debug.txt -------------------------------------------------------------------------------- /doc/programming_guide/distribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/distribution.txt -------------------------------------------------------------------------------- /doc/programming_guide/eventloop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/eventloop.txt -------------------------------------------------------------------------------- /doc/programming_guide/events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/events.txt -------------------------------------------------------------------------------- /doc/programming_guide/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/explosion.png -------------------------------------------------------------------------------- /doc/programming_guide/features1.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/features1.1.txt -------------------------------------------------------------------------------- /doc/programming_guide/font_metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/font_metrics.svg -------------------------------------------------------------------------------- /doc/programming_guide/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/gl.txt -------------------------------------------------------------------------------- /doc/programming_guide/graphics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/graphics.txt -------------------------------------------------------------------------------- /doc/programming_guide/image.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/image.txt -------------------------------------------------------------------------------- /doc/programming_guide/image_classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/image_classes.svg -------------------------------------------------------------------------------- /doc/programming_guide/image_grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/image_grid.svg -------------------------------------------------------------------------------- /doc/programming_guide/image_sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/image_sequence.svg -------------------------------------------------------------------------------- /doc/programming_guide/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/index.txt -------------------------------------------------------------------------------- /doc/programming_guide/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/input.txt -------------------------------------------------------------------------------- /doc/programming_guide/installation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/installation.txt -------------------------------------------------------------------------------- /doc/programming_guide/keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/keyboard.txt -------------------------------------------------------------------------------- /doc/programming_guide/media.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/media.txt -------------------------------------------------------------------------------- /doc/programming_guide/mouse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/mouse.txt -------------------------------------------------------------------------------- /doc/programming_guide/mouse_coordinates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/mouse_coordinates.svg -------------------------------------------------------------------------------- /doc/programming_guide/quickstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/quickstart.txt -------------------------------------------------------------------------------- /doc/programming_guide/resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/resources.txt -------------------------------------------------------------------------------- /doc/programming_guide/screens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/screens.svg -------------------------------------------------------------------------------- /doc/programming_guide/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/text.txt -------------------------------------------------------------------------------- /doc/programming_guide/text_classes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/text_classes.svg -------------------------------------------------------------------------------- /doc/programming_guide/time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/time.txt -------------------------------------------------------------------------------- /doc/programming_guide/window_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_location.svg -------------------------------------------------------------------------------- /doc/programming_guide/window_osx_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_osx_default.png -------------------------------------------------------------------------------- /doc/programming_guide/window_osx_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_osx_dialog.png -------------------------------------------------------------------------------- /doc/programming_guide/window_osx_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_osx_tool.png -------------------------------------------------------------------------------- /doc/programming_guide/window_xp_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_xp_default.png -------------------------------------------------------------------------------- /doc/programming_guide/window_xp_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_xp_dialog.png -------------------------------------------------------------------------------- /doc/programming_guide/window_xp_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/window_xp_tool.png -------------------------------------------------------------------------------- /doc/programming_guide/windowing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/programming_guide/windowing.txt -------------------------------------------------------------------------------- /doc/upload-doc-current.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/doc/upload-doc-current.sh -------------------------------------------------------------------------------- /examples/anim/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0001.png -------------------------------------------------------------------------------- /examples/anim/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0002.png -------------------------------------------------------------------------------- /examples/anim/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0003.png -------------------------------------------------------------------------------- /examples/anim/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0004.png -------------------------------------------------------------------------------- /examples/anim/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0005.png -------------------------------------------------------------------------------- /examples/anim/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0006.png -------------------------------------------------------------------------------- /examples/anim/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0007.png -------------------------------------------------------------------------------- /examples/anim/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0008.png -------------------------------------------------------------------------------- /examples/anim/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0009.png -------------------------------------------------------------------------------- /examples/anim/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0010.png -------------------------------------------------------------------------------- /examples/anim/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0011.png -------------------------------------------------------------------------------- /examples/anim/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0012.png -------------------------------------------------------------------------------- /examples/anim/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0013.png -------------------------------------------------------------------------------- /examples/anim/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0014.png -------------------------------------------------------------------------------- /examples/anim/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0015.png -------------------------------------------------------------------------------- /examples/anim/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0016.png -------------------------------------------------------------------------------- /examples/anim/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0017.png -------------------------------------------------------------------------------- /examples/anim/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0018.png -------------------------------------------------------------------------------- /examples/anim/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0019.png -------------------------------------------------------------------------------- /examples/anim/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/0020.png -------------------------------------------------------------------------------- /examples/anim/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/Thumbs.db -------------------------------------------------------------------------------- /examples/anim/anim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/anim/anim.py -------------------------------------------------------------------------------- /examples/apple_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/apple_remote.py -------------------------------------------------------------------------------- /examples/apple_remote_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/apple_remote_demo.py -------------------------------------------------------------------------------- /examples/astraea/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/README -------------------------------------------------------------------------------- /examples/astraea/assets/app.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/assets/app.icns -------------------------------------------------------------------------------- /examples/astraea/assets/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/assets/app.ico -------------------------------------------------------------------------------- /examples/astraea/assets/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/assets/ship.svg -------------------------------------------------------------------------------- /examples/astraea/astraea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/astraea.py -------------------------------------------------------------------------------- /examples/astraea/res/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/Thumbs.db -------------------------------------------------------------------------------- /examples/astraea/res/asteroid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/asteroid1.png -------------------------------------------------------------------------------- /examples/astraea/res/asteroid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/asteroid2.png -------------------------------------------------------------------------------- /examples/astraea/res/asteroid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/asteroid3.png -------------------------------------------------------------------------------- /examples/astraea/res/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/bullet.png -------------------------------------------------------------------------------- /examples/astraea/res/bullet.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/bullet.wav -------------------------------------------------------------------------------- /examples/astraea/res/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/explosion.png -------------------------------------------------------------------------------- /examples/astraea/res/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/explosion.wav -------------------------------------------------------------------------------- /examples/astraea/res/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/pointer.png -------------------------------------------------------------------------------- /examples/astraea/res/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/ship.png -------------------------------------------------------------------------------- /examples/astraea/res/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/smoke.png -------------------------------------------------------------------------------- /examples/astraea/res/starfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/starfield.jpg -------------------------------------------------------------------------------- /examples/astraea/res/starfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/res/starfield.png -------------------------------------------------------------------------------- /examples/astraea/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/astraea/setup.py -------------------------------------------------------------------------------- /examples/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/events.py -------------------------------------------------------------------------------- /examples/fixed_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/fixed_resolution.py -------------------------------------------------------------------------------- /examples/font_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/font_comparison.py -------------------------------------------------------------------------------- /examples/graphics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/graphics.py -------------------------------------------------------------------------------- /examples/html_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/html_label.py -------------------------------------------------------------------------------- /examples/image_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/image_convert.py -------------------------------------------------------------------------------- /examples/image_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/image_display.py -------------------------------------------------------------------------------- /examples/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/input.py -------------------------------------------------------------------------------- /examples/joystick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/joystick.py -------------------------------------------------------------------------------- /examples/media_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/media_info.py -------------------------------------------------------------------------------- /examples/media_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/media_player.py -------------------------------------------------------------------------------- /examples/multiple_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/multiple_windows.py -------------------------------------------------------------------------------- /examples/noisy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/noisy/README -------------------------------------------------------------------------------- /examples/noisy/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/noisy/ball.png -------------------------------------------------------------------------------- /examples/noisy/ball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/noisy/ball.wav -------------------------------------------------------------------------------- /examples/noisy/noisy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/noisy/noisy.py -------------------------------------------------------------------------------- /examples/opengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/opengl.py -------------------------------------------------------------------------------- /examples/opengl_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/opengl_3.py -------------------------------------------------------------------------------- /examples/particles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/particles.py -------------------------------------------------------------------------------- /examples/programming_guide/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/animation.py -------------------------------------------------------------------------------- /examples/programming_guide/dinosaur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/dinosaur.gif -------------------------------------------------------------------------------- /examples/programming_guide/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/events.py -------------------------------------------------------------------------------- /examples/programming_guide/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/hello_world.py -------------------------------------------------------------------------------- /examples/programming_guide/image_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/image_viewer.py -------------------------------------------------------------------------------- /examples/programming_guide/kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/kitten.jpg -------------------------------------------------------------------------------- /examples/programming_guide/window_subclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/programming_guide/window_subclass.py -------------------------------------------------------------------------------- /examples/pyglet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/pyglet.png -------------------------------------------------------------------------------- /examples/show_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/show_input.py -------------------------------------------------------------------------------- /examples/soundspace/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/README -------------------------------------------------------------------------------- /examples/soundspace/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/reader.py -------------------------------------------------------------------------------- /examples/soundspace/res/bass.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/res/bass.ogg -------------------------------------------------------------------------------- /examples/soundspace/res/drums.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/res/drums.ogg -------------------------------------------------------------------------------- /examples/soundspace/res/guitar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/res/guitar.ogg -------------------------------------------------------------------------------- /examples/soundspace/res/piano.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/res/piano.ogg -------------------------------------------------------------------------------- /examples/soundspace/res/space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/res/space.txt -------------------------------------------------------------------------------- /examples/soundspace/soundspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/soundspace/soundspace.py -------------------------------------------------------------------------------- /examples/tablet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/tablet.py -------------------------------------------------------------------------------- /examples/text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/text_input.py -------------------------------------------------------------------------------- /examples/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/timer.py -------------------------------------------------------------------------------- /examples/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/video.py -------------------------------------------------------------------------------- /examples/window_platform_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/examples/window_platform_event.py -------------------------------------------------------------------------------- /make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/make.py -------------------------------------------------------------------------------- /pyglet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/__init__.py -------------------------------------------------------------------------------- /pyglet/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/app/__init__.py -------------------------------------------------------------------------------- /pyglet/app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/app/base.py -------------------------------------------------------------------------------- /pyglet/app/cocoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/app/cocoa.py -------------------------------------------------------------------------------- /pyglet/app/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/app/win32.py -------------------------------------------------------------------------------- /pyglet/app/xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/app/xlib.py -------------------------------------------------------------------------------- /pyglet/canvas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/__init__.py -------------------------------------------------------------------------------- /pyglet/canvas/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/base.py -------------------------------------------------------------------------------- /pyglet/canvas/cocoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/cocoa.py -------------------------------------------------------------------------------- /pyglet/canvas/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/win32.py -------------------------------------------------------------------------------- /pyglet/canvas/xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/xlib.py -------------------------------------------------------------------------------- /pyglet/canvas/xlib_vidmoderestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/canvas/xlib_vidmoderestore.py -------------------------------------------------------------------------------- /pyglet/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/clock.py -------------------------------------------------------------------------------- /pyglet/com.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/com.py -------------------------------------------------------------------------------- /pyglet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/compat.py -------------------------------------------------------------------------------- /pyglet/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/event.py -------------------------------------------------------------------------------- /pyglet/font/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/__init__.py -------------------------------------------------------------------------------- /pyglet/font/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/base.py -------------------------------------------------------------------------------- /pyglet/font/freetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/freetype.py -------------------------------------------------------------------------------- /pyglet/font/freetype_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/freetype_lib.py -------------------------------------------------------------------------------- /pyglet/font/quartz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/quartz.py -------------------------------------------------------------------------------- /pyglet/font/ttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/ttf.py -------------------------------------------------------------------------------- /pyglet/font/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/win32.py -------------------------------------------------------------------------------- /pyglet/font/win32query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/font/win32query.py -------------------------------------------------------------------------------- /pyglet/gl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/__init__.py -------------------------------------------------------------------------------- /pyglet/gl/agl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/agl.py -------------------------------------------------------------------------------- /pyglet/gl/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/base.py -------------------------------------------------------------------------------- /pyglet/gl/cocoa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/cocoa.py -------------------------------------------------------------------------------- /pyglet/gl/gl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/gl.py -------------------------------------------------------------------------------- /pyglet/gl/gl_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/gl_info.py -------------------------------------------------------------------------------- /pyglet/gl/glext_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glext_arb.py -------------------------------------------------------------------------------- /pyglet/gl/glext_nv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glext_nv.py -------------------------------------------------------------------------------- /pyglet/gl/glu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glu.py -------------------------------------------------------------------------------- /pyglet/gl/glu_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glu_info.py -------------------------------------------------------------------------------- /pyglet/gl/glx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glx.py -------------------------------------------------------------------------------- /pyglet/gl/glx_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glx_info.py -------------------------------------------------------------------------------- /pyglet/gl/glxext_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glxext_arb.py -------------------------------------------------------------------------------- /pyglet/gl/glxext_mesa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glxext_mesa.py -------------------------------------------------------------------------------- /pyglet/gl/glxext_nv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/glxext_nv.py -------------------------------------------------------------------------------- /pyglet/gl/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/lib.py -------------------------------------------------------------------------------- /pyglet/gl/lib_agl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/lib_agl.py -------------------------------------------------------------------------------- /pyglet/gl/lib_glx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/lib_glx.py -------------------------------------------------------------------------------- /pyglet/gl/lib_wgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/lib_wgl.py -------------------------------------------------------------------------------- /pyglet/gl/wgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/wgl.py -------------------------------------------------------------------------------- /pyglet/gl/wgl_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/wgl_info.py -------------------------------------------------------------------------------- /pyglet/gl/wglext_arb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/wglext_arb.py -------------------------------------------------------------------------------- /pyglet/gl/wglext_nv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/wglext_nv.py -------------------------------------------------------------------------------- /pyglet/gl/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/win32.py -------------------------------------------------------------------------------- /pyglet/gl/xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/gl/xlib.py -------------------------------------------------------------------------------- /pyglet/graphics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/graphics/__init__.py -------------------------------------------------------------------------------- /pyglet/graphics/allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/graphics/allocation.py -------------------------------------------------------------------------------- /pyglet/graphics/vertexattribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/graphics/vertexattribute.py -------------------------------------------------------------------------------- /pyglet/graphics/vertexbuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/graphics/vertexbuffer.py -------------------------------------------------------------------------------- /pyglet/graphics/vertexdomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/graphics/vertexdomain.py -------------------------------------------------------------------------------- /pyglet/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/__init__.py -------------------------------------------------------------------------------- /pyglet/image/atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/atlas.py -------------------------------------------------------------------------------- /pyglet/image/codecs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/__init__.py -------------------------------------------------------------------------------- /pyglet/image/codecs/bmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/bmp.py -------------------------------------------------------------------------------- /pyglet/image/codecs/dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/dds.py -------------------------------------------------------------------------------- /pyglet/image/codecs/gdiplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/gdiplus.py -------------------------------------------------------------------------------- /pyglet/image/codecs/gdkpixbuf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/gdkpixbuf2.py -------------------------------------------------------------------------------- /pyglet/image/codecs/gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/gif.py -------------------------------------------------------------------------------- /pyglet/image/codecs/pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/pil.py -------------------------------------------------------------------------------- /pyglet/image/codecs/png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/png.py -------------------------------------------------------------------------------- /pyglet/image/codecs/pypng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/pypng.py -------------------------------------------------------------------------------- /pyglet/image/codecs/pypng_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/pypng_.py -------------------------------------------------------------------------------- /pyglet/image/codecs/quartz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/quartz.py -------------------------------------------------------------------------------- /pyglet/image/codecs/s3tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/image/codecs/s3tc.py -------------------------------------------------------------------------------- /pyglet/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/info.py -------------------------------------------------------------------------------- /pyglet/input/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/__init__.py -------------------------------------------------------------------------------- /pyglet/input/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/base.py -------------------------------------------------------------------------------- /pyglet/input/darwin_hid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/darwin_hid.py -------------------------------------------------------------------------------- /pyglet/input/directinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/directinput.py -------------------------------------------------------------------------------- /pyglet/input/evdev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/evdev.py -------------------------------------------------------------------------------- /pyglet/input/evdev_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/evdev_constants.py -------------------------------------------------------------------------------- /pyglet/input/wintab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/wintab.py -------------------------------------------------------------------------------- /pyglet/input/x11_xinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/x11_xinput.py -------------------------------------------------------------------------------- /pyglet/input/x11_xinput_tablet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/input/x11_xinput_tablet.py -------------------------------------------------------------------------------- /pyglet/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/lib.py -------------------------------------------------------------------------------- /pyglet/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyglet/libs/darwin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/__init__.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/cocoapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/cocoapy/__init__.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/cocoapy/cocoalibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/cocoapy/cocoalibs.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/cocoapy/cocoatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/cocoapy/cocoatypes.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/cocoapy/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/cocoapy/runtime.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/constants.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/quartzkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/quartzkey.py -------------------------------------------------------------------------------- /pyglet/libs/darwin/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/darwin/types.py -------------------------------------------------------------------------------- /pyglet/libs/win32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/__init__.py -------------------------------------------------------------------------------- /pyglet/libs/win32/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/constants.py -------------------------------------------------------------------------------- /pyglet/libs/win32/dinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/dinput.py -------------------------------------------------------------------------------- /pyglet/libs/win32/libwintab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/libwintab.py -------------------------------------------------------------------------------- /pyglet/libs/win32/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/types.py -------------------------------------------------------------------------------- /pyglet/libs/win32/winkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/win32/winkey.py -------------------------------------------------------------------------------- /pyglet/libs/x11/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyglet/libs/x11/cursorfont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/cursorfont.py -------------------------------------------------------------------------------- /pyglet/libs/x11/xf86vmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/xf86vmode.py -------------------------------------------------------------------------------- /pyglet/libs/x11/xinerama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/xinerama.py -------------------------------------------------------------------------------- /pyglet/libs/x11/xinput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/xinput.py -------------------------------------------------------------------------------- /pyglet/libs/x11/xlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/xlib.py -------------------------------------------------------------------------------- /pyglet/libs/x11/xsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/libs/x11/xsync.py -------------------------------------------------------------------------------- /pyglet/math_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/math_.py -------------------------------------------------------------------------------- /pyglet/media/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/__init__.py -------------------------------------------------------------------------------- /pyglet/media/avbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/avbin.py -------------------------------------------------------------------------------- /pyglet/media/drivers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyglet/media/drivers/directsound/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/directsound/__init__.py -------------------------------------------------------------------------------- /pyglet/media/drivers/directsound/lib_dsound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/directsound/lib_dsound.py -------------------------------------------------------------------------------- /pyglet/media/drivers/openal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/openal/__init__.py -------------------------------------------------------------------------------- /pyglet/media/drivers/openal/lib_alc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/openal/lib_alc.py -------------------------------------------------------------------------------- /pyglet/media/drivers/openal/lib_openal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/openal/lib_openal.py -------------------------------------------------------------------------------- /pyglet/media/drivers/pulse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/pulse/__init__.py -------------------------------------------------------------------------------- /pyglet/media/drivers/pulse/lib_pulseaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/pulse/lib_pulseaudio.py -------------------------------------------------------------------------------- /pyglet/media/drivers/silent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/drivers/silent.py -------------------------------------------------------------------------------- /pyglet/media/procedural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/procedural.py -------------------------------------------------------------------------------- /pyglet/media/riff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/media/riff.py -------------------------------------------------------------------------------- /pyglet/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/resource.py -------------------------------------------------------------------------------- /pyglet/sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/sprite.py -------------------------------------------------------------------------------- /pyglet/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/__init__.py -------------------------------------------------------------------------------- /pyglet/text/caret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/caret.py -------------------------------------------------------------------------------- /pyglet/text/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/document.py -------------------------------------------------------------------------------- /pyglet/text/formats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/formats/__init__.py -------------------------------------------------------------------------------- /pyglet/text/formats/attributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/formats/attributed.py -------------------------------------------------------------------------------- /pyglet/text/formats/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/formats/html.py -------------------------------------------------------------------------------- /pyglet/text/formats/plaintext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/formats/plaintext.py -------------------------------------------------------------------------------- /pyglet/text/formats/structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/formats/structured.py -------------------------------------------------------------------------------- /pyglet/text/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/layout.py -------------------------------------------------------------------------------- /pyglet/text/runlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/text/runlist.py -------------------------------------------------------------------------------- /pyglet/window/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/__init__.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/__init__.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/pyglet_delegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/pyglet_delegate.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/pyglet_textview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/pyglet_textview.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/pyglet_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/pyglet_view.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/pyglet_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/pyglet_window.py -------------------------------------------------------------------------------- /pyglet/window/cocoa/systemcursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/cocoa/systemcursor.py -------------------------------------------------------------------------------- /pyglet/window/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/event.py -------------------------------------------------------------------------------- /pyglet/window/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/key.py -------------------------------------------------------------------------------- /pyglet/window/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/mouse.py -------------------------------------------------------------------------------- /pyglet/window/win32/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/win32/__init__.py -------------------------------------------------------------------------------- /pyglet/window/xlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/pyglet/window/xlib/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmarks/benchmark_heapq_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/benchmarks/benchmark_heapq_clock.py -------------------------------------------------------------------------------- /tests/benchmarks/clocklegacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/benchmarks/clocklegacy.py -------------------------------------------------------------------------------- /tests/broken/context_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/broken/context_share.py -------------------------------------------------------------------------------- /tests/data/images/8bpp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/8bpp.gif -------------------------------------------------------------------------------- /tests/data/images/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/l.png -------------------------------------------------------------------------------- /tests/data/images/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/la.png -------------------------------------------------------------------------------- /tests/data/images/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb.png -------------------------------------------------------------------------------- /tests/data/images/rgb_16bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_16bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_1bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_1bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_24bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_24bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_32bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_32bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_4bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_4bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_8bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_8bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgb_8bpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_8bpp.png -------------------------------------------------------------------------------- /tests/data/images/rgb_8bpp_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_8bpp_trans.png -------------------------------------------------------------------------------- /tests/data/images/rgb_dxt1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgb_dxt1.dds -------------------------------------------------------------------------------- /tests/data/images/rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgba.png -------------------------------------------------------------------------------- /tests/data/images/rgba_32bpp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgba_32bpp.bmp -------------------------------------------------------------------------------- /tests/data/images/rgba_dxt1.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgba_dxt1.dds -------------------------------------------------------------------------------- /tests/data/images/rgba_dxt3.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgba_dxt3.dds -------------------------------------------------------------------------------- /tests/data/images/rgba_dxt5.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/data/images/rgba_dxt5.dds -------------------------------------------------------------------------------- /tests/interactive/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Leif' 2 | -------------------------------------------------------------------------------- /tests/interactive/font/align_multiline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/align_multiline.py -------------------------------------------------------------------------------- /tests/interactive/font/base_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/base_text.py -------------------------------------------------------------------------------- /tests/interactive/font/bullet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/bullet.py -------------------------------------------------------------------------------- /tests/interactive/font/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/color.py -------------------------------------------------------------------------------- /tests/interactive/font/color_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/color_blend.py -------------------------------------------------------------------------------- /tests/interactive/font/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/default.py -------------------------------------------------------------------------------- /tests/interactive/font/halign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/halign.py -------------------------------------------------------------------------------- /tests/interactive/font/have_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/have_font.py -------------------------------------------------------------------------------- /tests/interactive/font/horizontal_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/horizontal_metrics.py -------------------------------------------------------------------------------- /tests/interactive/font/oterh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/interactive/font/oterh/action_man.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/oterh/action_man.ttf -------------------------------------------------------------------------------- /tests/interactive/font/oterh/add_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/oterh/add_font.py -------------------------------------------------------------------------------- /tests/interactive/font/oterh/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/oterh/readme -------------------------------------------------------------------------------- /tests/interactive/font/set_dpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/set_dpi.py -------------------------------------------------------------------------------- /tests/interactive/font/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/system.py -------------------------------------------------------------------------------- /tests/interactive/font/valign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/valign.py -------------------------------------------------------------------------------- /tests/interactive/font/wrap_invariant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/font/wrap_invariant.py -------------------------------------------------------------------------------- /tests/interactive/image/base_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/base_load.py -------------------------------------------------------------------------------- /tests/interactive/image/base_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/base_save.py -------------------------------------------------------------------------------- /tests/interactive/image/buffer_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/buffer_copy.py -------------------------------------------------------------------------------- /tests/interactive/image/buffer_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/buffer_save.py -------------------------------------------------------------------------------- /tests/interactive/image/checkerboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/checkerboard.py -------------------------------------------------------------------------------- /tests/interactive/image/depth_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/depth_save.py -------------------------------------------------------------------------------- /tests/interactive/image/matrix_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/matrix_rgb.py -------------------------------------------------------------------------------- /tests/interactive/image/matrix_rgba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/matrix_rgba.py -------------------------------------------------------------------------------- /tests/interactive/image/platform_l_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/platform_l_load.py -------------------------------------------------------------------------------- /tests/interactive/image/platform_la_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/platform_la_load.py -------------------------------------------------------------------------------- /tests/interactive/image/platform_rgb_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/platform_rgb_load.py -------------------------------------------------------------------------------- /tests/interactive/image/platform_rgba_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/platform_rgba_load.py -------------------------------------------------------------------------------- /tests/interactive/image/texture_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/texture_3d.py -------------------------------------------------------------------------------- /tests/interactive/image/texture_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/texture_base.py -------------------------------------------------------------------------------- /tests/interactive/image/texture_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/image/texture_grid.py -------------------------------------------------------------------------------- /tests/interactive/image_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/interactive/import_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/import_tests.py -------------------------------------------------------------------------------- /tests/interactive/plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/plan.txt -------------------------------------------------------------------------------- /tests/interactive/player_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/player_tests.py -------------------------------------------------------------------------------- /tests/interactive/regression_tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/regression_tests/__init__.py -------------------------------------------------------------------------------- /tests/interactive/resource/res_load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/resource/res_load_image.py -------------------------------------------------------------------------------- /tests/interactive/resource/rgbm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/resource/rgbm.png -------------------------------------------------------------------------------- /tests/interactive/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/test.py -------------------------------------------------------------------------------- /tests/interactive/text/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/element.py -------------------------------------------------------------------------------- /tests/interactive/text/element_change_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/element_change_style.py -------------------------------------------------------------------------------- /tests/interactive/text/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/html.py -------------------------------------------------------------------------------- /tests/interactive/text/multiline_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/multiline_wrap.py -------------------------------------------------------------------------------- /tests/interactive/text/plain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/plain.py -------------------------------------------------------------------------------- /tests/interactive/text/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/text/style.py -------------------------------------------------------------------------------- /tests/interactive/window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/interactive/window/_window_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/_window_caption.py -------------------------------------------------------------------------------- /tests/interactive/window/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/cursor.png -------------------------------------------------------------------------------- /tests/interactive/window/event_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_button.py -------------------------------------------------------------------------------- /tests/interactive/window/event_close.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_close.py -------------------------------------------------------------------------------- /tests/interactive/window/event_expose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_expose.py -------------------------------------------------------------------------------- /tests/interactive/window/event_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_key.py -------------------------------------------------------------------------------- /tests/interactive/window/event_mouse_drag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_mouse_drag.py -------------------------------------------------------------------------------- /tests/interactive/window/event_mouse_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_mouse_motion.py -------------------------------------------------------------------------------- /tests/interactive/window/event_mouse_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_mouse_scroll.py -------------------------------------------------------------------------------- /tests/interactive/window/event_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_move.py -------------------------------------------------------------------------------- /tests/interactive/window/event_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_resize.py -------------------------------------------------------------------------------- /tests/interactive/window/event_show_hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_show_hide.py -------------------------------------------------------------------------------- /tests/interactive/window/event_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/event_text.py -------------------------------------------------------------------------------- /tests/interactive/window/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon1.png -------------------------------------------------------------------------------- /tests/interactive/window/icon_size1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon_size1.png -------------------------------------------------------------------------------- /tests/interactive/window/icon_size2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon_size2.png -------------------------------------------------------------------------------- /tests/interactive/window/icon_size3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon_size3.png -------------------------------------------------------------------------------- /tests/interactive/window/icon_size4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon_size4.png -------------------------------------------------------------------------------- /tests/interactive/window/icon_size5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/icon_size5.png -------------------------------------------------------------------------------- /tests/interactive/window/mode_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/mode_switch.py -------------------------------------------------------------------------------- /tests/interactive/window/multiple_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/multiple_screen.py -------------------------------------------------------------------------------- /tests/interactive/window/window_activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_activate.py -------------------------------------------------------------------------------- /tests/interactive/window/window_multisample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_multisample.py -------------------------------------------------------------------------------- /tests/interactive/window/window_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_open.py -------------------------------------------------------------------------------- /tests/interactive/window/window_resizable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_resizable.py -------------------------------------------------------------------------------- /tests/interactive/window/window_set_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_set_icon.py -------------------------------------------------------------------------------- /tests/interactive/window/window_set_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_set_size.py -------------------------------------------------------------------------------- /tests/interactive/window/window_set_visible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_set_visible.py -------------------------------------------------------------------------------- /tests/interactive/window/window_set_vsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_set_vsync.py -------------------------------------------------------------------------------- /tests/interactive/window/window_style_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_style_tool.py -------------------------------------------------------------------------------- /tests/interactive/window/window_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/interactive/window/window_util.py -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/readme.md -------------------------------------------------------------------------------- /tests/unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/unittests/integration/event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/integration/event_loop.py -------------------------------------------------------------------------------- /tests/unittests/integration/graphics_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/integration/resource_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unittests/integration/resource_tests/dir1/dir1/file.txt: -------------------------------------------------------------------------------- 1 | F3 2 | -------------------------------------------------------------------------------- /tests/unittests/integration/resource_tests/dir1/file.txt: -------------------------------------------------------------------------------- 1 | F2 2 | -------------------------------------------------------------------------------- /tests/unittests/integration/resource_tests/dir2/file.txt: -------------------------------------------------------------------------------- 1 | F6 2 | -------------------------------------------------------------------------------- /tests/unittests/integration/resource_tests/file.txt: -------------------------------------------------------------------------------- 1 | F1 2 | -------------------------------------------------------------------------------- /tests/unittests/integration/text_tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/unittests/test_atlas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_atlas.py -------------------------------------------------------------------------------- /tests/unittests/test_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_clock.py -------------------------------------------------------------------------------- /tests/unittests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_events.py -------------------------------------------------------------------------------- /tests/unittests/test_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_media.py -------------------------------------------------------------------------------- /tests/unittests/test_osx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_osx.py -------------------------------------------------------------------------------- /tests/unittests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_resource.py -------------------------------------------------------------------------------- /tests/unittests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tests/unittests/test_text.py -------------------------------------------------------------------------------- /tools/al_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/al_info.py -------------------------------------------------------------------------------- /tools/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/convert.py -------------------------------------------------------------------------------- /tools/ddsview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/ddsview.py -------------------------------------------------------------------------------- /tools/gendist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/gendist.sh -------------------------------------------------------------------------------- /tools/gengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/gengl.py -------------------------------------------------------------------------------- /tools/genmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmap.py -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/README -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.4.3-pyglet' 2 | -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/pkg.py -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/plists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/plists.py -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/templates.py -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/tools.py -------------------------------------------------------------------------------- /tools/genmpkg/bdist_mpkg_pyglet/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/bdist_mpkg_pyglet/util.py -------------------------------------------------------------------------------- /tools/genmpkg/genmpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/genmpkg.sh -------------------------------------------------------------------------------- /tools/genmpkg/res/background.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/res/background.pdf -------------------------------------------------------------------------------- /tools/genmpkg/res/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmpkg/res/readme.rtf -------------------------------------------------------------------------------- /tools/genmsi/genmsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmsi/genmsi.py -------------------------------------------------------------------------------- /tools/genmsi/pyglet.in.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmsi/pyglet.in.wxs -------------------------------------------------------------------------------- /tools/genmsi/res/banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmsi/res/banner.bmp -------------------------------------------------------------------------------- /tools/genmsi/res/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmsi/res/info.ico -------------------------------------------------------------------------------- /tools/genmsi/res/readme.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genmsi/res/readme.rtf -------------------------------------------------------------------------------- /tools/genwrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/genwrappers.py -------------------------------------------------------------------------------- /tools/gl_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/gl_info.py -------------------------------------------------------------------------------- /tools/inspect_font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/inspect_font.py -------------------------------------------------------------------------------- /tools/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/license.py -------------------------------------------------------------------------------- /tools/upload/descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/upload/descriptions.txt -------------------------------------------------------------------------------- /tools/upload/googlecode_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/upload/googlecode_upload.py -------------------------------------------------------------------------------- /tools/upload/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/upload/upload.py -------------------------------------------------------------------------------- /tools/wgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wgl.h -------------------------------------------------------------------------------- /tools/wraptypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/__init__.py -------------------------------------------------------------------------------- /tools/wraptypes/cparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/cparser.py -------------------------------------------------------------------------------- /tools/wraptypes/ctypesparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/ctypesparser.py -------------------------------------------------------------------------------- /tools/wraptypes/lex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/lex.py -------------------------------------------------------------------------------- /tools/wraptypes/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/preprocessor.py -------------------------------------------------------------------------------- /tools/wraptypes/wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/wrap.py -------------------------------------------------------------------------------- /tools/wraptypes/yacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/tools/wraptypes/yacc.py -------------------------------------------------------------------------------- /website/contribute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/contribute.xml -------------------------------------------------------------------------------- /website/documentation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/documentation.xml -------------------------------------------------------------------------------- /website/download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/download.xml -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/favicon.png -------------------------------------------------------------------------------- /website/genwebsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/genwebsite.py -------------------------------------------------------------------------------- /website/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/index.xml -------------------------------------------------------------------------------- /website/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/logo_large.png -------------------------------------------------------------------------------- /website/news-items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/news-items.xml -------------------------------------------------------------------------------- /website/news.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/news.xml -------------------------------------------------------------------------------- /website/pyglet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/pyglet.css -------------------------------------------------------------------------------- /website/pyglet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/pyglet.js -------------------------------------------------------------------------------- /website/template.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/template.xhtml -------------------------------------------------------------------------------- /website/update-all.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/update-all.php -------------------------------------------------------------------------------- /website/upload-website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/upload-website.sh -------------------------------------------------------------------------------- /website/wiki-archive/audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/audio.txt -------------------------------------------------------------------------------- /website/wiki-archive/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/faq.txt -------------------------------------------------------------------------------- /website/wiki-archive/gl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/gl.txt -------------------------------------------------------------------------------- /website/wiki-archive/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/gui.txt -------------------------------------------------------------------------------- /website/wiki-archive/images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/images.txt -------------------------------------------------------------------------------- /website/wiki-archive/package_dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/package_dependencies.txt -------------------------------------------------------------------------------- /website/wiki-archive/package_organisation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/package_organisation.txt -------------------------------------------------------------------------------- /website/wiki-archive/projection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/projection.txt -------------------------------------------------------------------------------- /website/wiki-archive/release_schedule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/release_schedule.txt -------------------------------------------------------------------------------- /website/wiki-archive/sprites_and_tiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/sprites_and_tiles.txt -------------------------------------------------------------------------------- /website/wiki-archive/start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/start.txt -------------------------------------------------------------------------------- /website/wiki-archive/text_and_layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/text_and_layout.txt -------------------------------------------------------------------------------- /website/wiki-archive/windowing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/windowing.txt -------------------------------------------------------------------------------- /website/wiki-archive/xml_resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitcraft/pyglet/HEAD/website/wiki-archive/xml_resources.txt --------------------------------------------------------------------------------