├── .gitignore ├── LICENSE ├── README.md ├── images ├── screenshot1.JPG ├── screenshot2.JPG ├── screenshot3.JPG └── screenshot4.JPG ├── scripts ├── Shader.py └── ShadertoyBrowser.py └── td-shadertoy.toe /.gitignore: -------------------------------------------------------------------------------- 1 | Backup/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/README.md -------------------------------------------------------------------------------- /images/screenshot1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/images/screenshot1.JPG -------------------------------------------------------------------------------- /images/screenshot2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/images/screenshot2.JPG -------------------------------------------------------------------------------- /images/screenshot3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/images/screenshot3.JPG -------------------------------------------------------------------------------- /images/screenshot4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/images/screenshot4.JPG -------------------------------------------------------------------------------- /scripts/Shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/scripts/Shader.py -------------------------------------------------------------------------------- /scripts/ShadertoyBrowser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/scripts/ShadertoyBrowser.py -------------------------------------------------------------------------------- /td-shadertoy.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewwachter/td-shadertoy/HEAD/td-shadertoy.toe --------------------------------------------------------------------------------