mirror of
https://github.com/libretro/dolphin
synced 2024-11-08 14:33:54 -05:00
32fe37d834
Removes the README.txt file in favour of a new wiki page I'm going to generate.
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);
|
|
}
|