mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
13 lines
283 B
GLSL
13 lines
283 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(location = 0) flat in float vTex;
|
|
layout(binding = 0) uniform sampler1D uSampler;
|
|
|
|
void main()
|
|
{
|
|
FragColor += texture(uSampler, vTex, 2.0) +
|
|
textureLod(uSampler, vTex, 3.0) +
|
|
textureGrad(uSampler, vTex, 5.0, 8.0);
|
|
}
|