dolphin/Data/Sys/Shaders/acidtrip2.glsl

7 lines
131 B
Plaintext
Raw Normal View History

2013-03-07 18:51:57 +00:00
void main()
2011-01-31 00:08:06 +00:00
{
float4 a = SampleOffset(int2( 1, 1));
float4 b = SampleOffset(int2(-1, -1));
SetOutput(( a*a*1.3 - b ) * 8.0);
2011-01-31 00:08:06 +00:00
}