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.

19 lines
447 B

  1. //========== Copyright (c) Valve Corporation, All rights reserved. ==========//
  2. #include "common_ps_fxc.h"
  3. struct PS_INPUT
  4. {
  5. #ifdef _PS3
  6. float unused; // empty structures not supported on Cg??
  7. #endif // _PS3
  8. };
  9. #ifdef _PS3
  10. float4_color_return_type main( PS_INPUT i ) : COLOR
  11. #else // _PS3
  12. HALF4 main( PS_INPUT i ) : COLOR
  13. #endif // !_PS3
  14. {
  15. return FinalOutput( float4( 1.0f, 1.0f, 1.0f, 1.0f ), 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE );
  16. }