source: opengl-game/compile.bat@ 17714b8

feature/imgui-sdl points-test
Last change on this file since 17714b8 was 6544020, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago

Update compile.bat to compile all vertex and fragment shaders

  • Property mode set to 100644
File size: 229 bytes
Line 
1echo off
2setlocal enabledelayedexpansion
3
4set VULKAN_SDK_PATH=D:\VulkanSDK\1.1.108.0
5
6for %%f in (*.vert *.frag) do (
7 set ext=%%~xf
8 set ext=!ext:~1!
9
10 %VULKAN_SDK_PATH%\Bin\glslangValidator.exe -V %%f -o %%~nf-!ext!.spv
11)
Note: See TracBrowser for help on using the repository browser.