orca/src/graphics/glsl_shaders/blit_fragment.glsl

13 lines
155 B
GLSL

precision mediump float;
in vec2 uv;
out vec4 fragColor;
layout(location = 0) uniform sampler2D tex;
void main()
{
fragColor = texture(tex, uv);
}