Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
366 B

  1. #include "common_vs_fxc.h"
  2. struct VS_INPUT
  3. {
  4. float3 vPos : POSITION;
  5. float2 vBaseTexCoord : TEXCOORD0;
  6. };
  7. struct VS_OUTPUT
  8. {
  9. float4 projPos : POSITION;
  10. float2 texCoord : TEXCOORD0;
  11. };
  12. VS_OUTPUT main( const VS_INPUT v )
  13. {
  14. VS_OUTPUT o = ( VS_OUTPUT )0;
  15. o.projPos = float4( v.vPos, 1.0f );
  16. o.texCoord = v.vBaseTexCoord;
  17. return o;
  18. }