mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-02-12 14:06:12 -06:00
8 lines
107 B
GLSL
8 lines
107 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
float4 c1 = SampleOffset(int2(5, 5));
|
|
|
|
SetOutput(c0 - c1);
|
|
}
|