├── .gitignore ├── Makefile ├── README.md ├── anim ├── blorps.glsl ├── cave-game.glsl ├── cyan-bubbles.glsl ├── eye-of-sauron.glsl ├── fire.glsl ├── fuji-vhs.glsl ├── globe.glsl ├── hexagon-tunnel.glsl ├── nyan.glsl ├── plasma.glsl ├── rgb.glsl ├── space.glsl ├── tesseract.glsl ├── voronoi-3d.glsl ├── voronoi.glsl └── wow.glsl ├── emulator.glsl ├── gif ├── blorps.gif ├── cave-game.gif ├── fuji-vhs.gif ├── globe.gif ├── nyan.gif ├── rgb.gif ├── tesseract.gif └── voronoi-3d.gif ├── img ├── globe-dark.jpg ├── globe-light.jpg ├── nyan.png └── wow.jpg ├── libcolor.glsl ├── libcube.glsl └── libnoise.glsl /.gitignore: -------------------------------------------------------------------------------- 1 | /rgb 2 | /video 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/README.md -------------------------------------------------------------------------------- /anim/blorps.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/blorps.glsl -------------------------------------------------------------------------------- /anim/cave-game.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/cave-game.glsl -------------------------------------------------------------------------------- /anim/cyan-bubbles.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/cyan-bubbles.glsl -------------------------------------------------------------------------------- /anim/eye-of-sauron.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/eye-of-sauron.glsl -------------------------------------------------------------------------------- /anim/fire.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/fire.glsl -------------------------------------------------------------------------------- /anim/fuji-vhs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/fuji-vhs.glsl -------------------------------------------------------------------------------- /anim/globe.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/globe.glsl -------------------------------------------------------------------------------- /anim/hexagon-tunnel.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/hexagon-tunnel.glsl -------------------------------------------------------------------------------- /anim/nyan.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/nyan.glsl -------------------------------------------------------------------------------- /anim/plasma.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/plasma.glsl -------------------------------------------------------------------------------- /anim/rgb.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/rgb.glsl -------------------------------------------------------------------------------- /anim/space.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/space.glsl -------------------------------------------------------------------------------- /anim/tesseract.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/tesseract.glsl -------------------------------------------------------------------------------- /anim/voronoi-3d.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/voronoi-3d.glsl -------------------------------------------------------------------------------- /anim/voronoi.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/voronoi.glsl -------------------------------------------------------------------------------- /anim/wow.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/anim/wow.glsl -------------------------------------------------------------------------------- /emulator.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/emulator.glsl -------------------------------------------------------------------------------- /gif/blorps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/blorps.gif -------------------------------------------------------------------------------- /gif/cave-game.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/cave-game.gif -------------------------------------------------------------------------------- /gif/fuji-vhs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/fuji-vhs.gif -------------------------------------------------------------------------------- /gif/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/globe.gif -------------------------------------------------------------------------------- /gif/nyan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/nyan.gif -------------------------------------------------------------------------------- /gif/rgb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/rgb.gif -------------------------------------------------------------------------------- /gif/tesseract.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/tesseract.gif -------------------------------------------------------------------------------- /gif/voronoi-3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/gif/voronoi-3d.gif -------------------------------------------------------------------------------- /img/globe-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/img/globe-dark.jpg -------------------------------------------------------------------------------- /img/globe-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/img/globe-light.jpg -------------------------------------------------------------------------------- /img/nyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/img/nyan.png -------------------------------------------------------------------------------- /img/wow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/img/wow.jpg -------------------------------------------------------------------------------- /libcolor.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/libcolor.glsl -------------------------------------------------------------------------------- /libcube.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/libcube.glsl -------------------------------------------------------------------------------- /libnoise.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyfloyd/cube-shaders/HEAD/libnoise.glsl --------------------------------------------------------------------------------