├── .gitignore ├── COPYING ├── EGLConfig.cpp ├── EGLConfig.h ├── EGLWindow.cpp ├── EGLWindow.h ├── Makefile ├── MyGLWindow.cpp ├── MyGLWindow.h ├── README.md ├── main.cpp ├── shader_utils.cpp ├── shader_utils.h ├── shaders ├── deform.f.glsl ├── flower.f.glsl ├── fly.f.glsl ├── heart.f.glsl ├── julia.f.glsl ├── kaleidoscope.f.glsl ├── mandel.f.glsl ├── relieftunnel.f.glsl ├── shapes.f.glsl ├── squaretunnel.f.glsl ├── star.f.glsl ├── triangle.f.glsl ├── triangle.v.glsl ├── tunnel.f.glsl ├── twist.f.glsl └── zinvert.f.glsl └── textures ├── .gitignore ├── README.md ├── texl0.jpg ├── texl1.jpg └── texl2.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/COPYING -------------------------------------------------------------------------------- /EGLConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/EGLConfig.cpp -------------------------------------------------------------------------------- /EGLConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/EGLConfig.h -------------------------------------------------------------------------------- /EGLWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/EGLWindow.cpp -------------------------------------------------------------------------------- /EGLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/EGLWindow.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/Makefile -------------------------------------------------------------------------------- /MyGLWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/MyGLWindow.cpp -------------------------------------------------------------------------------- /MyGLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/MyGLWindow.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/main.cpp -------------------------------------------------------------------------------- /shader_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shader_utils.cpp -------------------------------------------------------------------------------- /shader_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shader_utils.h -------------------------------------------------------------------------------- /shaders/deform.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/deform.f.glsl -------------------------------------------------------------------------------- /shaders/flower.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/flower.f.glsl -------------------------------------------------------------------------------- /shaders/fly.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/fly.f.glsl -------------------------------------------------------------------------------- /shaders/heart.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/heart.f.glsl -------------------------------------------------------------------------------- /shaders/julia.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/julia.f.glsl -------------------------------------------------------------------------------- /shaders/kaleidoscope.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/kaleidoscope.f.glsl -------------------------------------------------------------------------------- /shaders/mandel.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/mandel.f.glsl -------------------------------------------------------------------------------- /shaders/relieftunnel.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/relieftunnel.f.glsl -------------------------------------------------------------------------------- /shaders/shapes.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/shapes.f.glsl -------------------------------------------------------------------------------- /shaders/squaretunnel.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/squaretunnel.f.glsl -------------------------------------------------------------------------------- /shaders/star.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/star.f.glsl -------------------------------------------------------------------------------- /shaders/triangle.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/triangle.f.glsl -------------------------------------------------------------------------------- /shaders/triangle.v.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/triangle.v.glsl -------------------------------------------------------------------------------- /shaders/tunnel.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/tunnel.f.glsl -------------------------------------------------------------------------------- /shaders/twist.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/twist.f.glsl -------------------------------------------------------------------------------- /shaders/zinvert.f.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/shaders/zinvert.f.glsl -------------------------------------------------------------------------------- /textures/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /textures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/textures/README.md -------------------------------------------------------------------------------- /textures/texl0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/textures/texl0.jpg -------------------------------------------------------------------------------- /textures/texl1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/textures/texl1.jpg -------------------------------------------------------------------------------- /textures/texl2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dff180/pishadertoy/HEAD/textures/texl2.jpg --------------------------------------------------------------------------------