├── .gitignore ├── README.md ├── examples ├── test.glsl └── test.py ├── setup.py └── shadertoy ├── __init__.py ├── resources └── shadertoy │ └── programs │ └── fallback.glsl ├── templates └── project.py └── window.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/README.md -------------------------------------------------------------------------------- /examples/test.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/examples/test.glsl -------------------------------------------------------------------------------- /examples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/examples/test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/setup.py -------------------------------------------------------------------------------- /shadertoy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/shadertoy/__init__.py -------------------------------------------------------------------------------- /shadertoy/resources/shadertoy/programs/fallback.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/shadertoy/resources/shadertoy/programs/fallback.glsl -------------------------------------------------------------------------------- /shadertoy/templates/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/shadertoy/templates/project.py -------------------------------------------------------------------------------- /shadertoy/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/einarf/shadertoy/HEAD/shadertoy/window.py --------------------------------------------------------------------------------