mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 18:40:49 +00:00
10 lines
163 B
GLSL
10 lines
163 B
GLSL
#version 450
|
|
|
|
layout(binding = 0) uniform sampler2D uT;
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = textureGather(uT, vec2(0.5), 3);
|
|
}
|