mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
6 lines
160 B
GLSL
6 lines
160 B
GLSL
vec4 filter(sampler2D image)
|
|
{
|
|
vec2 texCoord = vec2(gl_FragCoord.x, uResolution.y - gl_FragCoord.y) / uResolution;
|
|
|
|
return texture2D(image, texCoord);
|
|
} |