mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-26 04:52:47 +00:00
6 lines
137 B
GLSL
6 lines
137 B
GLSL
void main()
|
|
{
|
|
float4 a = SampleOffset(int2( 1, 1));
|
|
float4 b = SampleOffset(int2(-1, -1));
|
|
SetOutput(( a*a*1.3 - b ) * 8.0);
|
|
}
|