Batocera.PLUS-bios/dolphin-emu/Sys/Shaders/invertedoutline.glsl

8 lines
100 B
Plaintext
Raw Normal View History

2021-08-22 20:02:14 +00:00
void main()
{
float4 c0 = Sample();
float4 c1 = SampleOffset(int2(5, 5));
SetOutput(c0 - c1);
}