mirror of
https://github.com/libretro/dolphin
synced 2024-11-09 06:53:01 -05:00
32fe37d834
Removes the README.txt file in favour of a new wiki page I'm going to generate.
8 lines
100 B
GLSL
8 lines
100 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
float4 c1 = SampleOffset(int2(5, 5));
|
|
|
|
SetOutput(c0 - c1);
|
|
}
|