mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-20 18:08:35 +00:00
11 lines
148 B
GLSL
11 lines
148 B
GLSL
#version 110
|
|
|
|
uniform sampler2D tex;
|
|
|
|
varying vec2 f_uv;
|
|
varying vec4 f_color;
|
|
|
|
void main() {
|
|
gl_FragColor = f_color * texture2D(tex, f_uv.st);
|
|
}
|