1 2 3 4 5 6 7 8 9 10
uniform mat4 proj; attribute vec4 position; attribute vec2 texcoord; varying vec2 v_texcoord; void main() { gl_Position = proj * position; v_texcoord = texcoord; }