Initial commit for vulkan tutorial

Following along the first 9 chapters of the Vulkan HelloTriangle
tutorial.
This commit is contained in:
2025-12-06 00:20:08 +00:00
commit d57dd446d1
24 changed files with 4841 additions and 0 deletions

6
build Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
CMAKE_BUILD_DIR=cmake-build
cmake -S . -B $CMAKE_BUILD_DIR -G Ninja
cmake --build $CMAKE_BUILD_DIR