Files
bluflame/hgplus/las/framework-dx11-nasm/tools/minify.bat
2026-04-18 22:31:51 +02:00

9 lines
229 B
Batchfile

@echo off
for %%i in (./gpu/*.glsl) do (
echo ----------------
echo Minifying %%i
echo ----------------
shader_minifier-1.1.2 -o ./gpu/%%~ni.mglsl -v --format none --field-names xyzw ./gpu/%%i
echo ----------------
@echo:
)