uniform sampler2D tInput; in vec3 position; out vec2 coord; void main() { coord = position.xy + 0.5; gl_Position = vec4(position.xy * 2., 0., 1.); }