attribute vec2 vPosition; attribute vec2 vUV; varying vec2 fUV; void main() { gl_Position = vec4( vPosition.x, vPosition.y, 0, 1); fUV = vUV; }