summaryrefslogtreecommitdiff
path: root/materialsystem/stdshaders/white_ps2x.fxc
blob: cd5b34f016258f1e0f7e7128cb0c5e1bf032337b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// STATIC: "CONVERT_TO_SRGB" "0..1"	[ps20b][= g_pHardwareConfig->NeedsShaderSRGBConversion()] [PC]
// STATIC: "CONVERT_TO_SRGB" "0..0"	[= 0] [XBOX]

#include "common_ps_fxc.h"

struct PS_INPUT
{
};

HALF4 main( PS_INPUT i ) : COLOR
{
	return FinalOutput( float4( 1.0f, 1.0f, 1.0f, 1.0f ), 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE );
}