summaryrefslogtreecommitdiffstats
path: root/LibOVR/Src/CAPI/D3D1X/Shaders/genComputeShaderHeader.bat
blob: 784bc862405ac0762d8040cf2820a47d810ec5ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
pushd %~dp0
echo Compiling shader and packing into header: %~2
setlocal

set PATH=%PATH%;"%DXSDK_DIR%Utilities\bin\x86\"
fxc.exe  /nologo /E main /T cs_5_0 /Fo "%1" %2
bin2header.exe "%1"

echo Generating shader reflection data for %1
ShaderReflector "%1" "%1_refl.h"

del "%1"
endlocal
popd