Higher-dimensional renderer implemented in Vulkan. This is mainly a reseach project.
Documentation will be available in the future.
You need to have Git, CMake, Make and Clang installed on your system.
Make sure you have Vulkan drivers installed and your hardware supports Vulkan.
Download the Vulkan SDK from here.
Follow the setup instructions.
git clone https://github.com/OliverKovacs/vulkan-xd
cd vulkan-xd
cmake -S . -B build -G "Unix Makefiles"
cmake --build build
cd build
./main
Windows is currently not supported, but it will be in the future.
VS Code IntelliSense is sometimes broken on Windows.
The basic Vulkan boilerplate code is largely based on Alexander Overvoorde's Vulkan Tutorial.
MIT