mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 09:05:03 +00:00
15 lines
213 B
GLSL
15 lines
213 B
GLSL
uniform sampler2D samp9;
|
|
|
|
out vec4 ocol0;
|
|
in vec2 uv0;
|
|
|
|
uniform vec4 resolution;
|
|
|
|
void main()
|
|
{
|
|
float4 c0 = texture(samp9, uv0);
|
|
float4 c1 = texture(samp9, uv0 + float2(5,5)*resolution.zw);
|
|
|
|
ocol0 = c0 - c1;
|
|
}
|