mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-05 12:26:33 +01:00
8 lines
100 B
GLSL
8 lines
100 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
float4 c1 = SampleOffset(int2(5, 5));
|
|
|
|
SetOutput(c0 - c1);
|
|
}
|