Counter Strike : Global Offensive Source Code
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.

18 lines
257 B

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