├── .gitignore ├── CMakeLists.txt ├── LICENCE ├── README ├── README.md ├── SDL2.dll ├── autogen.sh ├── clamp.m ├── compile.sh ├── defaults.cmake ├── olymposmons.m ├── refresh.sh ├── rel ├── SDL2.dll ├── ghosts_of_mars_freebsd-amd64 ├── ghosts_of_mars_freebsd-ia32 ├── ghosts_of_mars_freebsd-ia32_compo_720p_fullscreen ├── ghosts_of_mars_linux-amd64 └── ghosts_of_mars_windows-ia32.exe ├── release.sh ├── screenshot_large.png ├── screenshot_www.jpg └── src ├── bsd_rand.c ├── bsd_rand.h ├── dnload.h ├── glsl_program.cpp ├── glsl_program.hpp ├── glsl_shader.cpp ├── glsl_shader.hpp ├── glsl_wave.cpp ├── glsl_wave.hpp ├── image_png.cpp ├── image_png.hpp ├── intro.cpp ├── intro.hpp ├── main.cpp ├── quad.frag.glsl ├── quad.frag.glsl.hpp ├── songdata.h └── synth.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/LICENCE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/README.md -------------------------------------------------------------------------------- /SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/SDL2.dll -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/autogen.sh -------------------------------------------------------------------------------- /clamp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/clamp.m -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/compile.sh -------------------------------------------------------------------------------- /defaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/defaults.cmake -------------------------------------------------------------------------------- /olymposmons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/olymposmons.m -------------------------------------------------------------------------------- /refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/refresh.sh -------------------------------------------------------------------------------- /rel/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/SDL2.dll -------------------------------------------------------------------------------- /rel/ghosts_of_mars_freebsd-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/ghosts_of_mars_freebsd-amd64 -------------------------------------------------------------------------------- /rel/ghosts_of_mars_freebsd-ia32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/ghosts_of_mars_freebsd-ia32 -------------------------------------------------------------------------------- /rel/ghosts_of_mars_freebsd-ia32_compo_720p_fullscreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/ghosts_of_mars_freebsd-ia32_compo_720p_fullscreen -------------------------------------------------------------------------------- /rel/ghosts_of_mars_linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/ghosts_of_mars_linux-amd64 -------------------------------------------------------------------------------- /rel/ghosts_of_mars_windows-ia32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/rel/ghosts_of_mars_windows-ia32.exe -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/release.sh -------------------------------------------------------------------------------- /screenshot_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/screenshot_large.png -------------------------------------------------------------------------------- /screenshot_www.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/screenshot_www.jpg -------------------------------------------------------------------------------- /src/bsd_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/bsd_rand.c -------------------------------------------------------------------------------- /src/bsd_rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/bsd_rand.h -------------------------------------------------------------------------------- /src/dnload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/dnload.h -------------------------------------------------------------------------------- /src/glsl_program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_program.cpp -------------------------------------------------------------------------------- /src/glsl_program.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_program.hpp -------------------------------------------------------------------------------- /src/glsl_shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_shader.cpp -------------------------------------------------------------------------------- /src/glsl_shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_shader.hpp -------------------------------------------------------------------------------- /src/glsl_wave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_wave.cpp -------------------------------------------------------------------------------- /src/glsl_wave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/glsl_wave.hpp -------------------------------------------------------------------------------- /src/image_png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/image_png.cpp -------------------------------------------------------------------------------- /src/image_png.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/image_png.hpp -------------------------------------------------------------------------------- /src/intro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/intro.cpp -------------------------------------------------------------------------------- /src/intro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/intro.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/quad.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/quad.frag.glsl -------------------------------------------------------------------------------- /src/quad.frag.glsl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/quad.frag.glsl.hpp -------------------------------------------------------------------------------- /src/songdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/songdata.h -------------------------------------------------------------------------------- /src/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faemiyah/faemiyah-demoscene_2015-08_4k-intro_ghosts_of_mars/HEAD/src/synth.c --------------------------------------------------------------------------------