mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-06 04:38:37 +01:00
7 lines
131 B
GLSL
7 lines
131 B
GLSL
void main()
|
|
{
|
|
float4 a = SampleOffset(int2( 1, 1));
|
|
float4 b = SampleOffset(int2(-1, -1));
|
|
SetOutput(( a*a*1.3 - b ) * 8.0);
|
|
}
|