mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-24 20:08:31 +00:00
13 lines
175 B
GLSL
13 lines
175 B
GLSL
#version 300 es
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in mediump vec2 f_uv;
|
|
in lowp vec4 f_color;
|
|
|
|
out lowp vec4 out_color;
|
|
|
|
void main() {
|
|
out_color = f_color * texture(tex, f_uv.st);
|
|
}
|