├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── src ├── async_renderer.hpp ├── config.hpp ├── main.cpp └── utils ├── binary_io.hpp ├── event_manager.hpp ├── number_generator.hpp ├── palette.hpp ├── thread_pool.hpp ├── to_string.hpp └── va_grid.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-*/ 2 | .idea/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Julia Rendering -------------------------------------------------------------------------------- /src/async_renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/async_renderer.hpp -------------------------------------------------------------------------------- /src/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/config.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils/binary_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/binary_io.hpp -------------------------------------------------------------------------------- /src/utils/event_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/event_manager.hpp -------------------------------------------------------------------------------- /src/utils/number_generator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/number_generator.hpp -------------------------------------------------------------------------------- /src/utils/palette.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/palette.hpp -------------------------------------------------------------------------------- /src/utils/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/thread_pool.hpp -------------------------------------------------------------------------------- /src/utils/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/to_string.hpp -------------------------------------------------------------------------------- /src/utils/va_grid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/JuliaRendering/HEAD/src/utils/va_grid.hpp --------------------------------------------------------------------------------