Files
retroarch_system/system/dolphin-emu/Sys/Shaders/acidtrip2.glsl
Abdessamad DERRAZ d9fc3b32f0 RetroArch Pack
2020-05-08 17:25:48 +02:00

7 lines
131 B
GLSL

void main()
{
float4 a = SampleOffset(int2( 1, 1));
float4 b = SampleOffset(int2(-1, -1));
SetOutput(( a*a*1.3 - b ) * 8.0);
}