5 lines
169 B
Batchfile
5 lines
169 B
Batchfile
@echo off
|
|
echo Compiling GLSL shaders to SPIR-V Binary
|
|
for /r %%i in (*.vert;*.frag) do %VULKAN_SDK%\Bin\glslangValidator.exe -V "%%i" -o "%%~dpiSPIRV\%%~nxi".spv
|
|
|
|
PAUSE |