A work in progress Graphics engine using C++ / Vulkan. Made for learning / experimenting with computer graphics.
- Use Modern C++ (17 and higher) with a focus on writing clean code.
- Learn about Vulkan and CG fundamentals
- Make fancy stuff appear on the screen :)
- Uses VCPKG for package management (all third party libs except SDL2 are vendored in). Run the install_packages script according to your OS. Cmake is used for building the project. It utomatically compiles vertex and fragment shaders to Spir-V.
- Currently only tested on Windows 10 & Windows 11.
SDL2 : Windowing and input
VMA : Memory allocator for vulkan
VK-Bootstrap Handles the boring vulkan setup code
TinyObjLoader For model loading (.obj files only for now)
Vk-Guide : Primary resource for vulkan
Game-Math : Linear algebra theory