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.
|
|
//========== Copyright (c) Valve Corporation, All rights reserved. ==========//
#include "common_ps_fxc.h"
struct PS_INPUT { #ifdef _PS3 float unused; // empty structures not supported on Cg?? #endif // _PS3 };
#ifdef _PS3 float4_color_return_type main( PS_INPUT i ) : COLOR #else // _PS3 HALF4 main( PS_INPUT i ) : COLOR #endif // !_PS3 { return FinalOutput( float4( 1.0f, 1.0f, 1.0f, 1.0f ), 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE ); }
|