This commit is contained in:
nephacks
2025-06-04 03:22:50 +02:00
parent f234f23848
commit f12416cffd
14243 changed files with 6446499 additions and 26 deletions

View File

@@ -0,0 +1,26 @@
//========== Copyright (c) Valve Corporation, All rights reserved. ==========//
#include "common_vs_fxc.h"
struct VS_INPUT
{
float3 vPos : POSITION;
float2 vBaseTexCoord : TEXCOORD0;
};
struct VS_OUTPUT
{
float4 vProjPos : POSITION;
float2 vBaseUV : TEXCOORD0;
};
// Main
VS_OUTPUT main( const VS_INPUT i )
{
VS_OUTPUT o;
o.vProjPos = float4( i.vPos, 1.0f );
o.vBaseUV.xy = i.vBaseTexCoord.xy;
return o;
}