1
0

Added screenshot and powershell environment script

This commit is contained in:
2025-07-09 21:05:50 +02:00
parent 4ea58f4eac
commit 7e1d8299ef
3 changed files with 19 additions and 3 deletions

BIN
FirstQuad.png LFS Normal file

Binary file not shown.

14
LoadEnv.ps1 Normal file
View File

@@ -0,0 +1,14 @@
$SCRIPT_DIR = Split-Path -Path $PSCommandPath
function run {
param (
[string] $PROJECT
)
Write-Output "Start Running $PROJECT ..."
& $SCRIPT_DIR/build/$PROJECT/Debug/$PROJECT.exe
}
function build {
Write-Output "Starting Build..."
& cmake --build "$SCRIPT_DIR/build"
}

View File

@@ -2,7 +2,6 @@
![Vulkan](https://www.vulkan.org/user/pages/01.home/Vulkan-Wide.png) ![Vulkan](https://www.vulkan.org/user/pages/01.home/Vulkan-Wide.png)
![Rendering of first Triangle using vulkan](FirstTriangle.png) ![Rendering of first Triangle using vulkan](FirstTriangle.png)
![Rendering of the first quad in 3D](FirstQuad.png)