aboutsummaryrefslogtreecommitdiff
path: root/mp/src/materialsystem/stdshaders/debugluxel_ps2x.fxc
blob: 81c8ae00c24d1c7f3ef693108a72b2306656a632 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "common_ps_fxc.h"

sampler TextureSampler		: register( s0 );

struct PS_INPUT
{
	float2 baseTexCoord		: TEXCOORD0;
};

float4 main( PS_INPUT i ) : COLOR
{
	float4 result = tex2D( TextureSampler, i.baseTexCoord );
	return FinalOutput( result, 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE );
}