summaryrefslogtreecommitdiff
path: root/materialsystem/stdshaders/bufferclearobeystencil_ps2x.fxc
blob: d18f45c34fa5f5553c824d8d1014a105dddc25dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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
{
	float4 vColor	: COLOR0;
};

HALF4 main( PS_INPUT i ) : COLOR
{
	return i.vColor;
}