Files
retroarch_system/system/dolphin-emu/Sys/Shaders/invertedoutline.glsl
Abdessamad DERRAZ 86a6843a3b Dolphin : Update
2021-10-17 20:34:00 +02:00

8 lines
100 B
GLSL

void main()
{
float4 c0 = Sample();
float4 c1 = SampleOffset(int2(5, 5));
SetOutput(c0 - c1);
}