├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── compile_shaders.sh ├── flow ├── main.cpp └── shaders │ ├── composite.frag │ ├── intersections.glsl │ ├── materials.glsl │ ├── pathtrace.frag │ ├── primitives.glsl │ ├── quad.vert │ └── utilities.glsl ├── screenshots ├── render_0.png ├── render_1.png ├── render_2.png └── screenshot.png └── third_party └── glfw_files_here.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/README.md -------------------------------------------------------------------------------- /compile_shaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/compile_shaders.sh -------------------------------------------------------------------------------- /flow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/main.cpp -------------------------------------------------------------------------------- /flow/shaders/composite.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/composite.frag -------------------------------------------------------------------------------- /flow/shaders/intersections.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/intersections.glsl -------------------------------------------------------------------------------- /flow/shaders/materials.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/materials.glsl -------------------------------------------------------------------------------- /flow/shaders/pathtrace.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/pathtrace.frag -------------------------------------------------------------------------------- /flow/shaders/primitives.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/primitives.glsl -------------------------------------------------------------------------------- /flow/shaders/quad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/quad.vert -------------------------------------------------------------------------------- /flow/shaders/utilities.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/flow/shaders/utilities.glsl -------------------------------------------------------------------------------- /screenshots/render_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/screenshots/render_0.png -------------------------------------------------------------------------------- /screenshots/render_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/screenshots/render_1.png -------------------------------------------------------------------------------- /screenshots/render_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/screenshots/render_2.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwalczyk/flow/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /third_party/glfw_files_here.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------