iced_glow 0.8.0

A glow renderer for iced
Documentation
1
2
3
4
5
6
7
8
9
uniform mat4 u_Transform;

in vec2 i_Position;
out vec2 tex_pos;

void main() {
    gl_Position = u_Transform * vec4(i_Position, 0.0, 1.0);
    tex_pos = i_Position;
}