sge_programs 1.2.0

Shader functionality for SGE
Documentation
1
2
3
4
5
6
7
8
9
#version 140
in vec2 position;
in vec2 tex_coords;
out vec2 v_tex_coords;

void main() {
    v_tex_coords = tex_coords;
    gl_Position = vec4(position, 0.0, 1.0);
}