mirror of
https://github.com/opus-tango/IntroductionToVulkan.git
synced 2026-03-20 03:55:26 +00:00
Updated shader compiling bat file.
This commit is contained in:
@@ -8,8 +8,8 @@ REM // Licensed under the Apache License, Version 2.0 (the "License");
REM // yo
|
|||||||
REM // you may not use this file except in compliance with the License.
|
REM // you may not use this file except in compliance with the License.
|
||||||
REM // You may obtain a copy of the License at
|
REM // You may obtain a copy of the License at
|
||||||
REM //
|
REM //
|
||||||
REM // http://www.apache.org/licenses/LICENSE-2.0
|
REM // http://www.apache.org/licenses/LICENSE-2.0
|
||||||
REM //
|
REM //
|
||||||
REM // Unless required by applicable law or agreed to in writing, software
|
REM // Unless required by applicable law or agreed to in writing, software
|
||||||
REM // distributed under the License is distributed on an "AS IS" BASIS,
|
REM // distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
REM // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
REM // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
@@ -26,15 +26,27 @@ goto end
|
|||||||
if exist glslangValidator.exe (
|
if exist glslangValidator.exe (
|
||||||
goto convert
|
goto convert
|
||||||
)
|
)
|
||||||
for %%X in (glslangValidator.exe) do (set glslangValidator=%%~$PATH:X)
|
for %%X in (glslangValidator.exe) do (set glslangValidator=%%~$PATH:X)
|
||||||
if defined glslangValidator (
|
|
||||||
if defined glslangValidator (
|
if defined glslangValidator (
|
||||||
)
|
goto convert
|
||||||
|
)
|
||||||
|
|
||||||
echo Could not find "glslangValidator.exe" file.
|
echo Could not find "glslangValidator.exe" file.
|
||||||
goto end
|
goto end
|
||||||
|
|
||||||
:convert
|
:convert
|
||||||
|
|
||||||
|
set folder=%1\Data
|
||||||
|
|
||||||
|
if not exist %folder% (
|
||||||
|
echo Could not find specified folder.
|
||||||
|
goto end
|
||||||
|
)
|
||||||
|
|
||||||
|
if exist %folder%\shader.vert (
|
||||||
|
echo Converting the following shader file: %folder%\shader.vert
|
||||||
|
glslangValidator.exe -V -H -o %folder%\vert.spv %folder%\shader.vert > %folder%\vert.spv.txt
|
||||||
|
)
|
||||||
|
|
||||||
if exist %folder%\shader.frag (
|
if exist %folder%\shader.frag (
|
||||||
echo Converting the following shader file: %folder%\shader.frag
|
echo Converting the following shader file: %folder%\shader.frag
|
||||||
|
|||||||
Reference in New Issue
Block a user