blob: f9c8a88a8df5cfabcc5c3929214bb634af03e01e [file] [log] [blame]
attribute vec2 position;
attribute vec2 uvIn;
varying vec2 uv;
void main()
{
uv = uvIn;
gl_Position = vec4(position, 1.0, 1.0);
}