mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
27 lines
369 B
Plaintext
27 lines
369 B
Plaintext
|
#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;
|
||
|
}
|