├── .gitignore ├── COPYING ├── Makefile ├── README ├── data └── README ├── example-shadertoy.conf └── src └── shadertoy.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/README -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/data/README -------------------------------------------------------------------------------- /example-shadertoy.conf: -------------------------------------------------------------------------------- 1 | fpslimit = 60 2 | shaderdir = sdr 3 | -------------------------------------------------------------------------------- /src/shadertoy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtsiomb/shadertoy-view/HEAD/src/shadertoy.cc --------------------------------------------------------------------------------