xxxxxxxxxx
15
precision mediump float;
attribute vec3 aPosition;
attribute vec2 aTexCoord;
varying vec2 pos;
uniform float millis;
void main() {
pos = aTexCoord;
vec4 position = vec4(aPosition, 1);
position.xy = position.xy * 2. - 1.;
gl_Position = position;
}