mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-19 01:18:27 +00:00
17 lines
208 B
GLSL
17 lines
208 B
GLSL
#version 140
|
|
|
|
uniform mat4 matrix;
|
|
|
|
in vec2 pos;
|
|
in vec2 uv;
|
|
in vec4 col;
|
|
|
|
out vec2 f_uv;
|
|
out vec4 f_color;
|
|
|
|
void main() {
|
|
f_uv = uv;
|
|
f_color = col / 255.0;
|
|
gl_Position = matrix * vec4(pos.xy, 0, 1);
|
|
}
|