A toy Vulkan-based renderer with bleeding edge features. Works on both Linux and Windows.
If you are willing to help development, make sure you have the latest Vulkan SDK installed.
To build, you would need clang-18 or latest MSVC compiler with proper C++23 support. Lorr uses xmake build tool, you can install it from here.
- Vulkan SDK still does not support timeline semaphores, most of the validation errors are related to that.
- Lorr uses SDL3 as window manager. On Linux, both Wayland and X11 should be supported.
To build, simply run xmake
on project root directory.
If you want to see more verbose build output, you can run build it with xmake -v
instead.
You can configure your toolchain using xmake f --toolchain=clang|cl|gcc --mode=debug|release
before running building.
Make sure to run xmake install -o ./build
to get third party binaries.
Example configuration for clang:
xmake f --toolchain=clang --runtimes=c++_static --ldflags=-fuse-ld=mold' -m debug
xmake build
This project is licensed under the MIT License - see the LICENSE file for details.