mirror of
https://github.com/Abdess/retrobios.git
synced 2026-06-27 05:02:48 +00:00
7 lines
107 B
GLSL
7 lines
107 B
GLSL
void main()
|
|
{
|
|
float4 c0 = Sample();
|
|
float4 c1 = SampleOffset(int2(5, 5));
|
|
|
|
SetOutput(c0 - c1);
|
|
}
|