diff options
Diffstat (limited to 'mp/src/materialsystem/stdshaders/vr_distort_hud_vs20.fxc')
| -rw-r--r-- | mp/src/materialsystem/stdshaders/vr_distort_hud_vs20.fxc | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mp/src/materialsystem/stdshaders/vr_distort_hud_vs20.fxc b/mp/src/materialsystem/stdshaders/vr_distort_hud_vs20.fxc new file mode 100644 index 00000000..b82bfa13 --- /dev/null +++ b/mp/src/materialsystem/stdshaders/vr_distort_hud_vs20.fxc @@ -0,0 +1,26 @@ +#include "common_vs_fxc.h" + + +struct VS_INPUT +{ + float4 vPos : POSITION; + float2 vBaseTexCoord : TEXCOORD0; +}; + + +struct VS_OUTPUT +{ + float4 vProjPos : POSITION; + float2 vBaseTexCoord : TEXCOORD0; +}; + + +VS_OUTPUT main( const VS_INPUT v ) +{ + VS_OUTPUT o; + + o.vProjPos = v.vPos; + o.vBaseTexCoord = v.vBaseTexCoord; + + return o; +} |