summaryrefslogtreecommitdiff
path: root/Data/Sys/Shaders/invertedoutline.glsl
blob: fa1cb0f9bd732454e79be6cc5168d2c5de507270 (plain)
1
2
3
4
5
6
7
void main()
{
	float4 c0 = Sample();
	float4 c1 = SampleOffset(int2(5, 5));

	SetOutput(c0 - c1);
}