blob: d0aa488b3ed7b6790a4c93ed8421723149ae387c [file] [log] [blame]
attribute vec3 position;
varying vec2 TextureCoord;
void main(void)
{
gl_Position = vec4(position, 1.0);
TextureCoord = position.xy * 0.5 + 0.5;
}