summaryrefslogtreecommitdiff
path: root/Data/Sys/Shaders/acidtrip2.glsl
blob: 054fe17173f99d655072087fd3cc6c4b93853bb1 (plain)
1
2
3
4
5
6
void main()
{
	float4 a = SampleOffset(int2( 1,  1));
	float4 b = SampleOffset(int2(-1, -1));
	SetOutput(( a*a*1.3 - b ) * 8.0);
}