This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/shaders/GL/imgui.fsh.glsl
renderexpert a54f5268cd Add imGui shaders
Signed-off-by: renderexpert <expert@renderconsulting.co.uk>
2025-03-13 07:14:16 +03:00

10 lines
187 B
GLSL

varying vec2 v_texCoords;
varying vec4 v_color;
uniform sampler2D u_colorTex;
void main()
{
LOW_P vec4 color = texture2D(u_colorTex, v_texCoords);
gl_FragColor = color * v_color;
}