├── .github └── logo.png ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── demosys ├── __init__.py ├── conf │ ├── __init__.py │ └── default.py ├── context │ ├── __init__.py │ ├── base.py │ ├── glfw │ │ ├── __init__.py │ │ ├── keys.py │ │ └── window.py │ ├── headless.py │ ├── pyglet │ │ ├── __init__.py │ │ ├── keys.py │ │ └── window.py │ ├── pyqt │ │ ├── __init__.py │ │ ├── keys.py │ │ └── window.py │ └── sdl2 │ │ ├── __init__.py │ │ ├── keys.py │ │ └── window.py ├── effect_templates │ ├── cube_simple │ │ ├── dependencies.py │ │ ├── effects.py │ │ └── resources │ │ │ ├── data │ │ │ └── empty │ │ │ │ └── .gitkeep │ │ │ ├── programs │ │ │ └── cube_simple │ │ │ │ └── cube_plain.glsl │ │ │ ├── scenes │ │ │ └── empty │ │ │ │ └── .gitkeep │ │ │ └── textures │ │ │ └── cube_simple │ │ │ └── .gitkeep │ ├── empty │ │ ├── dependencies.py │ │ ├── effects.py │ │ └── resources │ │ │ ├── data │ │ │ └── empty │ │ │ │ └── .gitkeep │ │ │ ├── programs │ │ │ └── empty │ │ │ │ └── .gitkeep │ │ │ ├── scenes │ │ │ └── empty │ │ │ │ └── .gitkeep │ │ │ └── textures │ │ │ └── empty │ │ │ └── .gitkeep │ └── raymarching_simple │ │ ├── dependencies.py │ │ ├── effects.py │ │ └── resources │ │ └── programs │ │ └── raymarching_simple │ │ └── raymarching_simple.glsl ├── effects │ ├── __init__.py │ ├── deferred │ │ ├── dependencies.py │ │ ├── effects.py │ │ └── resources │ │ │ └── programs │ │ │ └── deferred │ │ │ ├── combine.glsl │ │ │ ├── debug.glsl │ │ │ ├── geometry_color.glsl │ │ │ ├── geometry_texture.glsl │ │ │ └── light_point.glsl │ ├── effect.py │ ├── registry.py │ └── text │ │ ├── dependencies.py │ │ ├── effects │ │ ├── __init__.py │ │ ├── base.py │ │ ├── renderer_2d.py │ │ └── writer_2d.py │ │ └── resources │ │ ├── data │ │ └── demosys │ │ │ └── text │ │ │ └── meta.json │ │ ├── programs │ │ └── demosys │ │ │ └── text │ │ │ ├── textwriter2d.glsl │ │ │ └── view_renderer_texture.glsl │ │ └── textures │ │ └── demosys │ │ └── text │ │ └── VeraMono.png ├── exceptions.py ├── finders │ ├── base.py │ ├── data.py │ ├── program.py │ ├── scenes.py │ └── textures.py ├── geometry │ ├── __init__.py │ ├── bbox.py │ ├── cube.py │ ├── plane.py │ ├── points.py │ ├── quad.py │ └── sphere.py ├── loaders │ ├── base.py │ ├── data │ │ ├── binary.py │ │ ├── json.py │ │ └── text.py │ ├── program │ │ ├── separate.py │ │ └── single.py │ ├── scene │ │ ├── base.py │ │ ├── gltf.py │ │ ├── stl_loader.py │ │ └── wavefront.py │ └── texture │ │ ├── array.py │ │ ├── pillow.py │ │ └── t2d.py ├── management │ ├── __init__.py │ ├── base.py │ └── commands │ │ ├── createeffect.py │ │ ├── createproject.py │ │ ├── run.py │ │ ├── runeffect.py │ │ └── test.py ├── opengl │ ├── program.py │ ├── projection.py │ ├── texture.py │ ├── types.py │ └── vao.py ├── project │ ├── __init__.py │ ├── base.py │ └── default.py ├── project_template │ ├── manage.py │ └── project │ │ ├── project.py │ │ └── settings.py ├── resources │ ├── __init__.py │ ├── base.py │ ├── data.py │ ├── meta.py │ ├── programs.py │ ├── scenes.py │ ├── textures.py │ └── tracks.py ├── scene │ ├── __init__.py │ ├── camera.py │ ├── material.py │ ├── mesh.py │ ├── node.py │ ├── programs.py │ ├── programs │ │ └── scene_default │ │ │ ├── bbox.glsl │ │ │ ├── color.glsl │ │ │ ├── fallback.glsl │ │ │ └── texture.glsl │ └── scene.py ├── test │ ├── mocks.py │ └── testcase.py ├── timeline │ ├── __init__.py │ ├── base.py │ ├── rocket.py │ └── single.py ├── timers │ ├── base.py │ ├── clock.py │ ├── music.py │ ├── rocket.py │ ├── rocketmusic.py │ └── vlc.py ├── utils │ └── module_loading.py └── view │ ├── __init__.py │ ├── controller.py │ └── screenshot.py ├── docs ├── Makefile ├── conf.py ├── controls.rst ├── index.rst ├── make.bat ├── quickstart.rst ├── reference │ ├── demosys.context.base.rst │ ├── demosys.context.glfw.rst │ ├── demosys.context.headless.rst │ ├── demosys.context.pyglet.rst │ ├── demosys.context.pyqt.rst │ ├── demosys.effects.effect.rst │ ├── demosys.geometry.rst │ ├── demosys.opengl.vao.rst │ ├── demosys.project.base.rst │ ├── demosys.timers.base.rst │ ├── demosys.timers.clock.rst │ ├── demosys.timers.music.rst │ ├── demosys.timers.rocket.rst │ ├── demosys.timers.rocketmusic.rst │ ├── demosys.timers.vlc.rst │ └── index.rst ├── requirements.txt ├── settings.rst └── user_guide │ ├── audio.rst │ ├── effects.rst │ ├── geometry.rst │ ├── index.rst │ ├── opengl.rst.txt │ ├── performance.rst │ └── project.rst ├── examples ├── README.md ├── cubes │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── cubes │ │ │ ├── cube_light.glsl │ │ │ ├── cube_plain.glsl │ │ │ ├── cube_textured_fs.glsl │ │ │ └── cube_textured_vs.glsl │ │ └── textures │ │ └── cubes │ │ └── crate.jpg ├── feedback │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── feedback │ │ │ ├── billboards.glsl │ │ │ └── transform.glsl │ │ └── textures │ │ └── feedback │ │ └── particle.png ├── geocubes │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── geocubes │ │ │ ├── cube_multi_fade.glsl │ │ │ ├── cube_texture_light.glsl │ │ │ └── quad_fs_uvscale.glsl │ │ └── textures │ │ └── geocubes │ │ ├── GreenFabric.png │ │ └── texture.png ├── images │ ├── cubes.png │ ├── feedback.png │ ├── geocubes.png │ ├── minecraft.png │ ├── raymarching.png │ ├── sponza.png │ ├── system.png │ ├── terrain.png │ ├── textrenderer.png │ ├── textwriter.png │ └── warpspeed.png ├── management │ └── commands │ │ └── mycommand.py ├── minecraft │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── minecraft │ │ │ └── minecraft.glsl │ │ └── scenes │ │ └── minecraft │ │ └── lost-empire │ │ ├── copyright.txt │ │ ├── lost_empire-Alpha.png │ │ ├── lost_empire-RGB.png │ │ ├── lost_empire-RGBA.png │ │ ├── lost_empire.jpg │ │ ├── lost_empire.mtl │ │ ├── lost_empire.obj │ │ ├── lost_empire.obj.bin │ │ └── lost_empire.obj.json ├── raymarching │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ └── programs │ │ └── raymarching │ │ └── raymarching_simple.glsl ├── settings.py ├── sponza │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ └── scenes │ │ └── sponza │ │ └── Sponza │ │ ├── README.md │ │ ├── glTF │ │ ├── 10381718147657362067.jpg │ │ ├── 10388182081421875623.jpg │ │ ├── 11474523244911310074.jpg │ │ ├── 11490520546946913238.jpg │ │ ├── 11872827283454512094.jpg │ │ ├── 11968150294050148237.jpg │ │ ├── 1219024358953944284.jpg │ │ ├── 12501374198249454378.jpg │ │ ├── 13196865903111448057.jpg │ │ ├── 13824894030729245199.jpg │ │ ├── 13982482287905699490.jpg │ │ ├── 14118779221266351425.jpg │ │ ├── 14170708867020035030.jpg │ │ ├── 14267839433702832875.jpg │ │ ├── 14650633544276105767.jpg │ │ ├── 15295713303328085182.jpg │ │ ├── 15722799267630235092.jpg │ │ ├── 16275776544635328252.png │ │ ├── 16299174074766089871.jpg │ │ ├── 16885566240357350108.jpg │ │ ├── 17556969131407844942.jpg │ │ ├── 17876391417123941155.jpg │ │ ├── 2051777328469649772.jpg │ │ ├── 2185409758123873465.jpg │ │ ├── 2299742237651021498.jpg │ │ ├── 2374361008830720677.jpg │ │ ├── 2411100444841994089.jpg │ │ ├── 2775690330959970771.jpg │ │ ├── 2969916736137545357.jpg │ │ ├── 332936164838540657.jpg │ │ ├── 3371964815757888145.jpg │ │ ├── 3455394979645218238.jpg │ │ ├── 3628158980083700836.jpg │ │ ├── 3827035219084910048.jpg │ │ ├── 4477655471536070370.jpg │ │ ├── 4601176305987539675.jpg │ │ ├── 466164707995436622.jpg │ │ ├── 4675343432951571524.jpg │ │ ├── 4871783166746854860.jpg │ │ ├── 4910669866631290573.jpg │ │ ├── 4975155472559461469.jpg │ │ ├── 5061699253647017043.png │ │ ├── 5792855332885324923.jpg │ │ ├── 5823059166183034438.jpg │ │ ├── 6047387724914829168.jpg │ │ ├── 6151467286084645207.jpg │ │ ├── 6593109234861095314.jpg │ │ ├── 6667038893015345571.jpg │ │ ├── 6772804448157695701.jpg │ │ ├── 7056944414013900257.jpg │ │ ├── 715093869573992647.jpg │ │ ├── 7268504077753552595.jpg │ │ ├── 7441062115984513793.jpg │ │ ├── 755318871556304029.jpg │ │ ├── 759203620573749278.jpg │ │ ├── 7645212358685992005.jpg │ │ ├── 7815564343179553343.jpg │ │ ├── 8006627369776289000.png │ │ ├── 8051790464816141987.jpg │ │ ├── 8114461559286000061.jpg │ │ ├── 8481240838833932244.jpg │ │ ├── 8503262930880235456.jpg │ │ ├── 8747919177698443163.jpg │ │ ├── 8750083169368950601.jpg │ │ ├── 8773302468495022225.jpg │ │ ├── 8783994986360286082.jpg │ │ ├── 9288698199695299068.jpg │ │ ├── 9916269861720640319.jpg │ │ ├── Sponza.bin │ │ ├── Sponza.gltf │ │ └── white.png │ │ └── screenshot │ │ └── screenshot.jpg ├── system │ ├── README.md │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── system │ │ │ ├── earth.glsl │ │ │ ├── milkyway.glsl │ │ │ └── sun.glsl │ │ └── textures │ │ └── system │ │ ├── 2k_earth_clouds.jpg │ │ ├── 2k_earth_daymap.jpg │ │ ├── 2k_earth_nightmap.jpg │ │ ├── 2k_sun.jpg │ │ └── MilkyWayPanorama4K.jpg ├── terrain │ ├── dependencies.py │ ├── effects.py │ └── resources │ │ ├── programs │ │ └── terrain │ │ │ ├── terrain.glsl │ │ │ ├── terrain_fs.glsl │ │ │ ├── terrain_tc.glsl │ │ │ ├── terrain_te.glsl │ │ │ └── terrain_vs.glsl │ │ └── textures │ │ └── terrain │ │ └── Ridges_01_DISP.jpg ├── textrenderer │ ├── dependencies.py │ ├── effects.py │ └── sample.txt ├── textwriter │ ├── dependencies.py │ ├── effects.py │ └── sample.txt └── warpspeed │ ├── dependencies.py │ ├── effects.py │ └── resources │ ├── programs │ └── warpspeed │ │ └── shader.glsl │ └── textures │ └── warpspeed │ ├── WarpspeedTexture.jpg │ └── WarpspeedTexture2.jpg ├── manage.py ├── pytest.ini ├── requirements-test.txt ├── setup.cfg ├── setup.py ├── tests ├── effect_package │ ├── dependencies.py │ └── effects.py ├── project.py ├── resources │ ├── data │ │ ├── data.bin │ │ └── data.txt │ ├── data_override │ │ └── data.txt │ ├── programs │ │ ├── v_write_1.glsl │ │ ├── vf_instanced.glsl │ │ ├── vf_pos.glsl │ │ ├── vf_pos_color.glsl │ │ ├── vf_subroutines.glsl │ │ └── vgf_quads.glsl │ ├── scenes │ │ ├── BoxTextured │ │ │ ├── README.md │ │ │ ├── glTF-Binary │ │ │ │ └── BoxTextured.glb │ │ │ ├── glTF-Embedded │ │ │ │ └── BoxTextured.gltf │ │ │ ├── glTF-pbrSpecularGlossiness │ │ │ │ ├── BoxTextured.gltf │ │ │ │ ├── BoxTextured0.bin │ │ │ │ └── CesiumLogoFlat.png │ │ │ └── glTF │ │ │ │ ├── BoxTextured.gltf │ │ │ │ ├── BoxTextured0.bin │ │ │ │ └── CesiumLogoFlat.png │ │ ├── cube.obj │ │ ├── cube.obj.bin │ │ └── cube.obj.json │ └── textures │ │ ├── crate.jpg │ │ └── wood.jpg ├── settings.py ├── test_context.py ├── test_deferred.py ├── test_docs.py ├── test_effect.py ├── test_effect_templates.py ├── test_geometry.py ├── test_projection.py ├── test_resources.py ├── test_text.py ├── test_vao.py └── test_window.py └── tox.ini /.github/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/.github/logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/README.md -------------------------------------------------------------------------------- /demosys/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/__init__.py -------------------------------------------------------------------------------- /demosys/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/conf/__init__.py -------------------------------------------------------------------------------- /demosys/conf/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/conf/default.py -------------------------------------------------------------------------------- /demosys/context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/__init__.py -------------------------------------------------------------------------------- /demosys/context/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/base.py -------------------------------------------------------------------------------- /demosys/context/glfw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/glfw/__init__.py -------------------------------------------------------------------------------- /demosys/context/glfw/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/glfw/keys.py -------------------------------------------------------------------------------- /demosys/context/glfw/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/glfw/window.py -------------------------------------------------------------------------------- /demosys/context/headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/headless.py -------------------------------------------------------------------------------- /demosys/context/pyglet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyglet/__init__.py -------------------------------------------------------------------------------- /demosys/context/pyglet/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyglet/keys.py -------------------------------------------------------------------------------- /demosys/context/pyglet/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyglet/window.py -------------------------------------------------------------------------------- /demosys/context/pyqt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyqt/__init__.py -------------------------------------------------------------------------------- /demosys/context/pyqt/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyqt/keys.py -------------------------------------------------------------------------------- /demosys/context/pyqt/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/pyqt/window.py -------------------------------------------------------------------------------- /demosys/context/sdl2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/sdl2/__init__.py -------------------------------------------------------------------------------- /demosys/context/sdl2/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/sdl2/keys.py -------------------------------------------------------------------------------- /demosys/context/sdl2/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/context/sdl2/window.py -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/cube_simple/dependencies.py -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/cube_simple/effects.py -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/resources/data/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/resources/programs/cube_simple/cube_plain.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/cube_simple/resources/programs/cube_simple/cube_plain.glsl -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/resources/scenes/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/cube_simple/resources/textures/cube_simple/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/empty/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/empty/dependencies.py -------------------------------------------------------------------------------- /demosys/effect_templates/empty/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/empty/effects.py -------------------------------------------------------------------------------- /demosys/effect_templates/empty/resources/data/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/empty/resources/programs/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/empty/resources/scenes/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/empty/resources/textures/empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demosys/effect_templates/raymarching_simple/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/raymarching_simple/dependencies.py -------------------------------------------------------------------------------- /demosys/effect_templates/raymarching_simple/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/raymarching_simple/effects.py -------------------------------------------------------------------------------- /demosys/effect_templates/raymarching_simple/resources/programs/raymarching_simple/raymarching_simple.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effect_templates/raymarching_simple/resources/programs/raymarching_simple/raymarching_simple.glsl -------------------------------------------------------------------------------- /demosys/effects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/__init__.py -------------------------------------------------------------------------------- /demosys/effects/deferred/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/dependencies.py -------------------------------------------------------------------------------- /demosys/effects/deferred/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/effects.py -------------------------------------------------------------------------------- /demosys/effects/deferred/resources/programs/deferred/combine.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/resources/programs/deferred/combine.glsl -------------------------------------------------------------------------------- /demosys/effects/deferred/resources/programs/deferred/debug.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/resources/programs/deferred/debug.glsl -------------------------------------------------------------------------------- /demosys/effects/deferred/resources/programs/deferred/geometry_color.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/resources/programs/deferred/geometry_color.glsl -------------------------------------------------------------------------------- /demosys/effects/deferred/resources/programs/deferred/geometry_texture.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/resources/programs/deferred/geometry_texture.glsl -------------------------------------------------------------------------------- /demosys/effects/deferred/resources/programs/deferred/light_point.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/deferred/resources/programs/deferred/light_point.glsl -------------------------------------------------------------------------------- /demosys/effects/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/effect.py -------------------------------------------------------------------------------- /demosys/effects/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/registry.py -------------------------------------------------------------------------------- /demosys/effects/text/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/dependencies.py -------------------------------------------------------------------------------- /demosys/effects/text/effects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/effects/__init__.py -------------------------------------------------------------------------------- /demosys/effects/text/effects/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/effects/base.py -------------------------------------------------------------------------------- /demosys/effects/text/effects/renderer_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/effects/renderer_2d.py -------------------------------------------------------------------------------- /demosys/effects/text/effects/writer_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/effects/writer_2d.py -------------------------------------------------------------------------------- /demosys/effects/text/resources/data/demosys/text/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/resources/data/demosys/text/meta.json -------------------------------------------------------------------------------- /demosys/effects/text/resources/programs/demosys/text/textwriter2d.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/resources/programs/demosys/text/textwriter2d.glsl -------------------------------------------------------------------------------- /demosys/effects/text/resources/programs/demosys/text/view_renderer_texture.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/resources/programs/demosys/text/view_renderer_texture.glsl -------------------------------------------------------------------------------- /demosys/effects/text/resources/textures/demosys/text/VeraMono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/effects/text/resources/textures/demosys/text/VeraMono.png -------------------------------------------------------------------------------- /demosys/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/exceptions.py -------------------------------------------------------------------------------- /demosys/finders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/finders/base.py -------------------------------------------------------------------------------- /demosys/finders/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/finders/data.py -------------------------------------------------------------------------------- /demosys/finders/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/finders/program.py -------------------------------------------------------------------------------- /demosys/finders/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/finders/scenes.py -------------------------------------------------------------------------------- /demosys/finders/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/finders/textures.py -------------------------------------------------------------------------------- /demosys/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/__init__.py -------------------------------------------------------------------------------- /demosys/geometry/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/bbox.py -------------------------------------------------------------------------------- /demosys/geometry/cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/cube.py -------------------------------------------------------------------------------- /demosys/geometry/plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/plane.py -------------------------------------------------------------------------------- /demosys/geometry/points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/points.py -------------------------------------------------------------------------------- /demosys/geometry/quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/quad.py -------------------------------------------------------------------------------- /demosys/geometry/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/geometry/sphere.py -------------------------------------------------------------------------------- /demosys/loaders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/base.py -------------------------------------------------------------------------------- /demosys/loaders/data/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/data/binary.py -------------------------------------------------------------------------------- /demosys/loaders/data/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/data/json.py -------------------------------------------------------------------------------- /demosys/loaders/data/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/data/text.py -------------------------------------------------------------------------------- /demosys/loaders/program/separate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/program/separate.py -------------------------------------------------------------------------------- /demosys/loaders/program/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/program/single.py -------------------------------------------------------------------------------- /demosys/loaders/scene/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/scene/base.py -------------------------------------------------------------------------------- /demosys/loaders/scene/gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/scene/gltf.py -------------------------------------------------------------------------------- /demosys/loaders/scene/stl_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/scene/stl_loader.py -------------------------------------------------------------------------------- /demosys/loaders/scene/wavefront.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/scene/wavefront.py -------------------------------------------------------------------------------- /demosys/loaders/texture/array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/texture/array.py -------------------------------------------------------------------------------- /demosys/loaders/texture/pillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/texture/pillow.py -------------------------------------------------------------------------------- /demosys/loaders/texture/t2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/loaders/texture/t2d.py -------------------------------------------------------------------------------- /demosys/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/__init__.py -------------------------------------------------------------------------------- /demosys/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/base.py -------------------------------------------------------------------------------- /demosys/management/commands/createeffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/commands/createeffect.py -------------------------------------------------------------------------------- /demosys/management/commands/createproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/commands/createproject.py -------------------------------------------------------------------------------- /demosys/management/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/commands/run.py -------------------------------------------------------------------------------- /demosys/management/commands/runeffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/commands/runeffect.py -------------------------------------------------------------------------------- /demosys/management/commands/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/management/commands/test.py -------------------------------------------------------------------------------- /demosys/opengl/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/opengl/program.py -------------------------------------------------------------------------------- /demosys/opengl/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/opengl/projection.py -------------------------------------------------------------------------------- /demosys/opengl/texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/opengl/texture.py -------------------------------------------------------------------------------- /demosys/opengl/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/opengl/types.py -------------------------------------------------------------------------------- /demosys/opengl/vao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/opengl/vao.py -------------------------------------------------------------------------------- /demosys/project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project/__init__.py -------------------------------------------------------------------------------- /demosys/project/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project/base.py -------------------------------------------------------------------------------- /demosys/project/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project/default.py -------------------------------------------------------------------------------- /demosys/project_template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project_template/manage.py -------------------------------------------------------------------------------- /demosys/project_template/project/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project_template/project/project.py -------------------------------------------------------------------------------- /demosys/project_template/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/project_template/project/settings.py -------------------------------------------------------------------------------- /demosys/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/__init__.py -------------------------------------------------------------------------------- /demosys/resources/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/base.py -------------------------------------------------------------------------------- /demosys/resources/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/data.py -------------------------------------------------------------------------------- /demosys/resources/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/meta.py -------------------------------------------------------------------------------- /demosys/resources/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/programs.py -------------------------------------------------------------------------------- /demosys/resources/scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/scenes.py -------------------------------------------------------------------------------- /demosys/resources/textures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/textures.py -------------------------------------------------------------------------------- /demosys/resources/tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/resources/tracks.py -------------------------------------------------------------------------------- /demosys/scene/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/__init__.py -------------------------------------------------------------------------------- /demosys/scene/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/camera.py -------------------------------------------------------------------------------- /demosys/scene/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/material.py -------------------------------------------------------------------------------- /demosys/scene/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/mesh.py -------------------------------------------------------------------------------- /demosys/scene/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/node.py -------------------------------------------------------------------------------- /demosys/scene/programs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/programs.py -------------------------------------------------------------------------------- /demosys/scene/programs/scene_default/bbox.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/programs/scene_default/bbox.glsl -------------------------------------------------------------------------------- /demosys/scene/programs/scene_default/color.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/programs/scene_default/color.glsl -------------------------------------------------------------------------------- /demosys/scene/programs/scene_default/fallback.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/programs/scene_default/fallback.glsl -------------------------------------------------------------------------------- /demosys/scene/programs/scene_default/texture.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/programs/scene_default/texture.glsl -------------------------------------------------------------------------------- /demosys/scene/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/scene/scene.py -------------------------------------------------------------------------------- /demosys/test/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/test/mocks.py -------------------------------------------------------------------------------- /demosys/test/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/test/testcase.py -------------------------------------------------------------------------------- /demosys/timeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timeline/__init__.py -------------------------------------------------------------------------------- /demosys/timeline/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timeline/base.py -------------------------------------------------------------------------------- /demosys/timeline/rocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timeline/rocket.py -------------------------------------------------------------------------------- /demosys/timeline/single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timeline/single.py -------------------------------------------------------------------------------- /demosys/timers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/base.py -------------------------------------------------------------------------------- /demosys/timers/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/clock.py -------------------------------------------------------------------------------- /demosys/timers/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/music.py -------------------------------------------------------------------------------- /demosys/timers/rocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/rocket.py -------------------------------------------------------------------------------- /demosys/timers/rocketmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/rocketmusic.py -------------------------------------------------------------------------------- /demosys/timers/vlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/timers/vlc.py -------------------------------------------------------------------------------- /demosys/utils/module_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/utils/module_loading.py -------------------------------------------------------------------------------- /demosys/view/__init__.py: -------------------------------------------------------------------------------- 1 | from .controller import init, run # noqa 2 | -------------------------------------------------------------------------------- /demosys/view/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/view/controller.py -------------------------------------------------------------------------------- /demosys/view/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/demosys/view/screenshot.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/controls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/controls.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/reference/demosys.context.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.context.base.rst -------------------------------------------------------------------------------- /docs/reference/demosys.context.glfw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.context.glfw.rst -------------------------------------------------------------------------------- /docs/reference/demosys.context.headless.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.context.headless.rst -------------------------------------------------------------------------------- /docs/reference/demosys.context.pyglet.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.context.pyglet.rst -------------------------------------------------------------------------------- /docs/reference/demosys.context.pyqt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.context.pyqt.rst -------------------------------------------------------------------------------- /docs/reference/demosys.effects.effect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.effects.effect.rst -------------------------------------------------------------------------------- /docs/reference/demosys.geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.geometry.rst -------------------------------------------------------------------------------- /docs/reference/demosys.opengl.vao.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.opengl.vao.rst -------------------------------------------------------------------------------- /docs/reference/demosys.project.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.project.base.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.base.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.clock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.clock.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.music.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.music.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.rocket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.rocket.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.rocketmusic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.rocketmusic.rst -------------------------------------------------------------------------------- /docs/reference/demosys.timers.vlc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/demosys.timers.vlc.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/user_guide/audio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/audio.rst -------------------------------------------------------------------------------- /docs/user_guide/effects.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/effects.rst -------------------------------------------------------------------------------- /docs/user_guide/geometry.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/geometry.rst -------------------------------------------------------------------------------- /docs/user_guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/index.rst -------------------------------------------------------------------------------- /docs/user_guide/opengl.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/opengl.rst.txt -------------------------------------------------------------------------------- /docs/user_guide/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/performance.rst -------------------------------------------------------------------------------- /docs/user_guide/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/docs/user_guide/project.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cubes/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/dependencies.py -------------------------------------------------------------------------------- /examples/cubes/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/effects.py -------------------------------------------------------------------------------- /examples/cubes/resources/programs/cubes/cube_light.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/resources/programs/cubes/cube_light.glsl -------------------------------------------------------------------------------- /examples/cubes/resources/programs/cubes/cube_plain.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/resources/programs/cubes/cube_plain.glsl -------------------------------------------------------------------------------- /examples/cubes/resources/programs/cubes/cube_textured_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/resources/programs/cubes/cube_textured_fs.glsl -------------------------------------------------------------------------------- /examples/cubes/resources/programs/cubes/cube_textured_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/resources/programs/cubes/cube_textured_vs.glsl -------------------------------------------------------------------------------- /examples/cubes/resources/textures/cubes/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/cubes/resources/textures/cubes/crate.jpg -------------------------------------------------------------------------------- /examples/feedback/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/feedback/dependencies.py -------------------------------------------------------------------------------- /examples/feedback/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/feedback/effects.py -------------------------------------------------------------------------------- /examples/feedback/resources/programs/feedback/billboards.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/feedback/resources/programs/feedback/billboards.glsl -------------------------------------------------------------------------------- /examples/feedback/resources/programs/feedback/transform.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/feedback/resources/programs/feedback/transform.glsl -------------------------------------------------------------------------------- /examples/feedback/resources/textures/feedback/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/feedback/resources/textures/feedback/particle.png -------------------------------------------------------------------------------- /examples/geocubes/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/dependencies.py -------------------------------------------------------------------------------- /examples/geocubes/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/effects.py -------------------------------------------------------------------------------- /examples/geocubes/resources/programs/geocubes/cube_multi_fade.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/resources/programs/geocubes/cube_multi_fade.glsl -------------------------------------------------------------------------------- /examples/geocubes/resources/programs/geocubes/cube_texture_light.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/resources/programs/geocubes/cube_texture_light.glsl -------------------------------------------------------------------------------- /examples/geocubes/resources/programs/geocubes/quad_fs_uvscale.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/resources/programs/geocubes/quad_fs_uvscale.glsl -------------------------------------------------------------------------------- /examples/geocubes/resources/textures/geocubes/GreenFabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/resources/textures/geocubes/GreenFabric.png -------------------------------------------------------------------------------- /examples/geocubes/resources/textures/geocubes/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/geocubes/resources/textures/geocubes/texture.png -------------------------------------------------------------------------------- /examples/images/cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/cubes.png -------------------------------------------------------------------------------- /examples/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/feedback.png -------------------------------------------------------------------------------- /examples/images/geocubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/geocubes.png -------------------------------------------------------------------------------- /examples/images/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/minecraft.png -------------------------------------------------------------------------------- /examples/images/raymarching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/raymarching.png -------------------------------------------------------------------------------- /examples/images/sponza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/sponza.png -------------------------------------------------------------------------------- /examples/images/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/system.png -------------------------------------------------------------------------------- /examples/images/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/terrain.png -------------------------------------------------------------------------------- /examples/images/textrenderer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/textrenderer.png -------------------------------------------------------------------------------- /examples/images/textwriter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/textwriter.png -------------------------------------------------------------------------------- /examples/images/warpspeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/images/warpspeed.png -------------------------------------------------------------------------------- /examples/management/commands/mycommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/management/commands/mycommand.py -------------------------------------------------------------------------------- /examples/minecraft/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/dependencies.py -------------------------------------------------------------------------------- /examples/minecraft/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/effects.py -------------------------------------------------------------------------------- /examples/minecraft/resources/programs/minecraft/minecraft.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/programs/minecraft/minecraft.glsl -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/copyright.txt -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-Alpha.png -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-RGB.png -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-RGBA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire-RGBA.png -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.jpg -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.mtl -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj.bin -------------------------------------------------------------------------------- /examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/minecraft/resources/scenes/minecraft/lost-empire/lost_empire.obj.json -------------------------------------------------------------------------------- /examples/raymarching/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/raymarching/dependencies.py -------------------------------------------------------------------------------- /examples/raymarching/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/raymarching/effects.py -------------------------------------------------------------------------------- /examples/raymarching/resources/programs/raymarching/raymarching_simple.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/raymarching/resources/programs/raymarching/raymarching_simple.glsl -------------------------------------------------------------------------------- /examples/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/settings.py -------------------------------------------------------------------------------- /examples/sponza/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/dependencies.py -------------------------------------------------------------------------------- /examples/sponza/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/effects.py -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/README.md -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/10381718147657362067.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/10381718147657362067.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/10388182081421875623.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/10388182081421875623.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/11474523244911310074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/11474523244911310074.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/11490520546946913238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/11490520546946913238.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/11872827283454512094.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/11872827283454512094.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/11968150294050148237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/11968150294050148237.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/1219024358953944284.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/1219024358953944284.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/12501374198249454378.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/12501374198249454378.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/13196865903111448057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/13196865903111448057.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/13824894030729245199.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/13824894030729245199.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/13982482287905699490.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/13982482287905699490.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/14118779221266351425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/14118779221266351425.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/14170708867020035030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/14170708867020035030.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/14267839433702832875.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/14267839433702832875.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/14650633544276105767.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/14650633544276105767.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/15295713303328085182.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/15295713303328085182.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/15722799267630235092.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/15722799267630235092.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/16275776544635328252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/16275776544635328252.png -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/16299174074766089871.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/16299174074766089871.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/16885566240357350108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/16885566240357350108.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/17556969131407844942.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/17556969131407844942.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/17876391417123941155.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/17876391417123941155.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2051777328469649772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2051777328469649772.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2185409758123873465.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2185409758123873465.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2299742237651021498.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2299742237651021498.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2374361008830720677.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2374361008830720677.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2411100444841994089.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2411100444841994089.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2775690330959970771.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2775690330959970771.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/2969916736137545357.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/2969916736137545357.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/332936164838540657.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/332936164838540657.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/3371964815757888145.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/3371964815757888145.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/3455394979645218238.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/3455394979645218238.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/3628158980083700836.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/3628158980083700836.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/3827035219084910048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/3827035219084910048.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4477655471536070370.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4477655471536070370.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4601176305987539675.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4601176305987539675.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/466164707995436622.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/466164707995436622.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4675343432951571524.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4675343432951571524.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4871783166746854860.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4871783166746854860.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4910669866631290573.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4910669866631290573.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/4975155472559461469.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/4975155472559461469.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/5061699253647017043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/5061699253647017043.png -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/5792855332885324923.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/5792855332885324923.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/5823059166183034438.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/5823059166183034438.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/6047387724914829168.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/6047387724914829168.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/6151467286084645207.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/6151467286084645207.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/6593109234861095314.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/6593109234861095314.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/6667038893015345571.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/6667038893015345571.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/6772804448157695701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/6772804448157695701.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/7056944414013900257.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/7056944414013900257.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/715093869573992647.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/715093869573992647.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/7268504077753552595.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/7268504077753552595.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/7441062115984513793.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/7441062115984513793.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/755318871556304029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/755318871556304029.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/759203620573749278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/759203620573749278.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/7645212358685992005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/7645212358685992005.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/7815564343179553343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/7815564343179553343.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8006627369776289000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8006627369776289000.png -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8051790464816141987.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8051790464816141987.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8114461559286000061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8114461559286000061.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8481240838833932244.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8481240838833932244.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8503262930880235456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8503262930880235456.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8747919177698443163.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8747919177698443163.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8750083169368950601.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8750083169368950601.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8773302468495022225.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8773302468495022225.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/8783994986360286082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/8783994986360286082.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/9288698199695299068.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/9288698199695299068.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/9916269861720640319.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/9916269861720640319.jpg -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/Sponza.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/Sponza.bin -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/Sponza.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/Sponza.gltf -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/glTF/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/glTF/white.png -------------------------------------------------------------------------------- /examples/sponza/resources/scenes/sponza/Sponza/screenshot/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/sponza/resources/scenes/sponza/Sponza/screenshot/screenshot.jpg -------------------------------------------------------------------------------- /examples/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/README.md -------------------------------------------------------------------------------- /examples/system/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/dependencies.py -------------------------------------------------------------------------------- /examples/system/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/effects.py -------------------------------------------------------------------------------- /examples/system/resources/programs/system/earth.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/programs/system/earth.glsl -------------------------------------------------------------------------------- /examples/system/resources/programs/system/milkyway.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/programs/system/milkyway.glsl -------------------------------------------------------------------------------- /examples/system/resources/programs/system/sun.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/programs/system/sun.glsl -------------------------------------------------------------------------------- /examples/system/resources/textures/system/2k_earth_clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/textures/system/2k_earth_clouds.jpg -------------------------------------------------------------------------------- /examples/system/resources/textures/system/2k_earth_daymap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/textures/system/2k_earth_daymap.jpg -------------------------------------------------------------------------------- /examples/system/resources/textures/system/2k_earth_nightmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/textures/system/2k_earth_nightmap.jpg -------------------------------------------------------------------------------- /examples/system/resources/textures/system/2k_sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/textures/system/2k_sun.jpg -------------------------------------------------------------------------------- /examples/system/resources/textures/system/MilkyWayPanorama4K.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/system/resources/textures/system/MilkyWayPanorama4K.jpg -------------------------------------------------------------------------------- /examples/terrain/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/dependencies.py -------------------------------------------------------------------------------- /examples/terrain/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/effects.py -------------------------------------------------------------------------------- /examples/terrain/resources/programs/terrain/terrain.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/programs/terrain/terrain.glsl -------------------------------------------------------------------------------- /examples/terrain/resources/programs/terrain/terrain_fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/programs/terrain/terrain_fs.glsl -------------------------------------------------------------------------------- /examples/terrain/resources/programs/terrain/terrain_tc.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/programs/terrain/terrain_tc.glsl -------------------------------------------------------------------------------- /examples/terrain/resources/programs/terrain/terrain_te.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/programs/terrain/terrain_te.glsl -------------------------------------------------------------------------------- /examples/terrain/resources/programs/terrain/terrain_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/programs/terrain/terrain_vs.glsl -------------------------------------------------------------------------------- /examples/terrain/resources/textures/terrain/Ridges_01_DISP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/terrain/resources/textures/terrain/Ridges_01_DISP.jpg -------------------------------------------------------------------------------- /examples/textrenderer/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textrenderer/dependencies.py -------------------------------------------------------------------------------- /examples/textrenderer/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textrenderer/effects.py -------------------------------------------------------------------------------- /examples/textrenderer/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textrenderer/sample.txt -------------------------------------------------------------------------------- /examples/textwriter/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textwriter/dependencies.py -------------------------------------------------------------------------------- /examples/textwriter/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textwriter/effects.py -------------------------------------------------------------------------------- /examples/textwriter/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/textwriter/sample.txt -------------------------------------------------------------------------------- /examples/warpspeed/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/warpspeed/dependencies.py -------------------------------------------------------------------------------- /examples/warpspeed/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/warpspeed/effects.py -------------------------------------------------------------------------------- /examples/warpspeed/resources/programs/warpspeed/shader.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/warpspeed/resources/programs/warpspeed/shader.glsl -------------------------------------------------------------------------------- /examples/warpspeed/resources/textures/warpspeed/WarpspeedTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/warpspeed/resources/textures/warpspeed/WarpspeedTexture.jpg -------------------------------------------------------------------------------- /examples/warpspeed/resources/textures/warpspeed/WarpspeedTexture2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/examples/warpspeed/resources/textures/warpspeed/WarpspeedTexture2.jpg -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | tox==3.8.3 2 | pytest==4.3.1 3 | PyQt5==5.12.2 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/setup.py -------------------------------------------------------------------------------- /tests/effect_package/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/effect_package/dependencies.py -------------------------------------------------------------------------------- /tests/effect_package/effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/effect_package/effects.py -------------------------------------------------------------------------------- /tests/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/project.py -------------------------------------------------------------------------------- /tests/resources/data/data.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/resources/data/data.txt: -------------------------------------------------------------------------------- 1 | 1234 -------------------------------------------------------------------------------- /tests/resources/data_override/data.txt: -------------------------------------------------------------------------------- 1 | 4567 -------------------------------------------------------------------------------- /tests/resources/programs/v_write_1.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/v_write_1.glsl -------------------------------------------------------------------------------- /tests/resources/programs/vf_instanced.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/vf_instanced.glsl -------------------------------------------------------------------------------- /tests/resources/programs/vf_pos.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/vf_pos.glsl -------------------------------------------------------------------------------- /tests/resources/programs/vf_pos_color.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/vf_pos_color.glsl -------------------------------------------------------------------------------- /tests/resources/programs/vf_subroutines.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/vf_subroutines.glsl -------------------------------------------------------------------------------- /tests/resources/programs/vgf_quads.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/programs/vgf_quads.glsl -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/README.md -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF-Binary/BoxTextured.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF-Binary/BoxTextured.glb -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF-Embedded/BoxTextured.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF-Embedded/BoxTextured.gltf -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/BoxTextured.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/BoxTextured.gltf -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/BoxTextured0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/BoxTextured0.bin -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/CesiumLogoFlat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF-pbrSpecularGlossiness/CesiumLogoFlat.png -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF/BoxTextured.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF/BoxTextured.gltf -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF/BoxTextured0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF/BoxTextured0.bin -------------------------------------------------------------------------------- /tests/resources/scenes/BoxTextured/glTF/CesiumLogoFlat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/BoxTextured/glTF/CesiumLogoFlat.png -------------------------------------------------------------------------------- /tests/resources/scenes/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/cube.obj -------------------------------------------------------------------------------- /tests/resources/scenes/cube.obj.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/cube.obj.bin -------------------------------------------------------------------------------- /tests/resources/scenes/cube.obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/scenes/cube.obj.json -------------------------------------------------------------------------------- /tests/resources/textures/crate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/textures/crate.jpg -------------------------------------------------------------------------------- /tests/resources/textures/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/resources/textures/wood.jpg -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_context.py -------------------------------------------------------------------------------- /tests/test_deferred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_deferred.py -------------------------------------------------------------------------------- /tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_docs.py -------------------------------------------------------------------------------- /tests/test_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_effect.py -------------------------------------------------------------------------------- /tests/test_effect_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_effect_templates.py -------------------------------------------------------------------------------- /tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_geometry.py -------------------------------------------------------------------------------- /tests/test_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_projection.py -------------------------------------------------------------------------------- /tests/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_resources.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/test_vao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_vao.py -------------------------------------------------------------------------------- /tests/test_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tests/test_window.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Contraz/demosys-py/HEAD/tox.ini --------------------------------------------------------------------------------