mirror of
https://github.com/opus-tango/IntroductionToVulkan.git
synced 2026-03-20 03:55:26 +00:00
Changed line endings from Windows (\r\n) to Linux (\n) style.
This commit is contained in:
@@ -1,42 +1,42 @@
|
||||
@ECHO OFF
|
||||
SETLOCAL
|
||||
|
||||
REM /////////////////////////////////////////////////////////////////////////////////////////////
|
||||
REM // Copyright 2017 Intel Corporation
|
||||
REM //
|
||||
REM // Licensed under the Apache License, Version 2.0 (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 //
|
||||
REM // http://www.apache.org/licenses/LICENSE-2.0
|
||||
REM //
|
||||
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 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
REM // See the License for the specific language governing permissions and
|
||||
REM // limitations under the License.
|
||||
REM /////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
if [%1] == [] (
|
||||
echo No arguments provided! Please specify folder number.
|
||||
echo Example usage: compile_shaders.bat 03
|
||||
goto end
|
||||
)
|
||||
|
||||
if exist glslangValidator.exe (
|
||||
goto convert
|
||||
)
|
||||
for %%X in (glslangValidator.exe) do (set glslangValidator=%%~$PATH:X)
|
||||
if defined glslangValidator (
|
||||
goto convert
|
||||
)
|
||||
|
||||
echo Could not find "glslangValidator.exe" file.
|
||||
goto end
|
||||
|
||||
:convert
|
||||
|
||||
set folder=Tutorial%1/Data%1
|
||||
echo Converting GLSL shaders into SPIR-V assembly in the "%folder%" folder.
|
||||
|
||||
@ECHO OFF
|
||||
SETLOCAL
|
||||
|
||||
REM /////////////////////////////////////////////////////////////////////////////////////////////
|
||||
REM // Copyright 2017 Intel Corporation
|
||||
REM //
|
||||
REM // Licensed under the Apache License, Version 2.0 (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 //
|
||||
REM // http://www.apache.org/licenses/LICENSE-2.0
|
||||
REM //
|
||||
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 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
REM // See the License for the specific language governing permissions and
|
||||
REM // limitations under the License.
|
||||
REM /////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
if [%1] == [] (
|
||||
echo No arguments provided! Please specify folder number.
|
||||
echo Example usage: compile_shaders.bat 03
|
||||
goto end
|
||||
)
|
||||
|
||||
if exist glslangValidator.exe (
|
||||
goto convert
|
||||
)
|
||||
for %%X in (glslangValidator.exe) do (set glslangValidator=%%~$PATH:X)
|
||||
if defined glslangValidator (
|
||||
goto convert
|
||||
)
|
||||
|
||||
echo Could not find "glslangValidator.exe" file.
|
||||
goto end
|
||||
|
||||
:convert
|
||||
|
||||
set folder=Tutorial%1/Data%1
|
||||
echo Converting GLSL shaders into SPIR-V assembly in the "%folder%" folder.
|
||||
|
||||
if exist %folder%/shader.vert (
|
||||
Reference in New Issue
Block a user