1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 12:36:05 +08:00
Files
hl2sdk/materialsystem/stdshaders/gamecontrols_vs20.fxc

30 lines
593 B
Plaintext
Raw Normal View History

2012-07-06 20:35:59 -05:00
//========== Copyright (c) Valve Corporation, All rights reserved. ==========//
#include "common_vs_fxc.h"
struct VS_INPUT
{
float3 vPos : POSITION;
float3 vTexCoord : TEXCOORD0;
float4 vColor : COLOR0;
};
struct VS_OUTPUT
{
float4 projPos : POSITION;
float3 vTexCoord : TEXCOORD0;
float4 vColor : TEXCOORD1;
};
VS_OUTPUT main( const VS_INPUT v )
{
VS_OUTPUT o = ( VS_OUTPUT )0;
o.projPos.xyzw = mul( float4( v.vPos.xyz, 1.0f ), cModelViewProj );
o.vTexCoord = v.vTexCoord;
o.vColor.rgba = v.vColor.rgba;
return o;
}