We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04fe223 + 2a27d81 commit fbeb25bCopy full SHA for fbeb25b
2 files changed
.github/workflows/build.yml
@@ -33,7 +33,7 @@ jobs:
33
shell: pwsh
34
35
- name: Setup CUDA Toolkit
36
- uses: Jimver/cuda-toolkit@v0.2.18
+ uses: Jimver/cuda-toolkit@v0.2.30
37
with:
38
cuda: '12.6.0'
39
method: 'network'
compile_shaders.bat
@@ -1,12 +1,11 @@
1
@echo off
2
echo Compiling ray tracing shaders...
3
4
-set VULKAN_SDK=C:\VulkanSDK\1.4.321.1
+if "%VULKAN_SDK%"=="" set VULKAN_SDK=C:\VulkanSDK\1.4.321.1
5
6
if not exist "%VULKAN_SDK%\Bin\glslangValidator.exe" (
7
echo ERROR: glslangValidator not found at %VULKAN_SDK%\Bin\
8
echo Please set VULKAN_SDK to your Vulkan SDK installation directory
9
- pause
10
exit /b 1
11
)
12
@@ -35,4 +34,3 @@ copy /Y shaders\compiled\*.spv build\Release\shaders\compiled\
echo.
echo Shader compilation complete!
-pause
0 commit comments