feature/imgui-sdl
Last change
on this file since aa7707d was aa7707d, checked in by Dmitry Portnoy <dmp1488@…>, 5 years ago |
Update the Vulkan SDK version and get the latest code compiling on Windows
|
-
Property mode
set to
100644
|
File size:
249 bytes
|
Line | |
---|
1 | echo off
|
---|
2 | setlocal enabledelayedexpansion
|
---|
3 |
|
---|
4 | cd shaders
|
---|
5 |
|
---|
6 | set VULKAN_SDK_PATH=D:\VulkanSDK\1.2.135.0
|
---|
7 |
|
---|
8 | for %%f in (*.vert *.frag) do (
|
---|
9 | set ext=%%~xf
|
---|
10 | set ext=!ext:~1!
|
---|
11 |
|
---|
12 | %VULKAN_SDK_PATH%\Bin\glslangValidator.exe -V %%f -o %%~nf-!ext!.spv
|
---|
13 | )
|
---|
14 |
|
---|
15 | cd ..
|
---|
Note:
See
TracBrowser
for help on using the repository browser.