summaryrefslogtreecommitdiff
path: root/shaders/weston/1.vert
blob: 7b4e1b703297b34cd86a6810318dfddcf1a6fb3c (plain)
1
2
3
4
5
6
7
8
9
10
uniform mat4 proj;
attribute vec2 position;
attribute vec2 texcoord;
varying vec2 v_texcoord;
void main()
{
   gl_Position = proj * vec4(position, 0.0, 1.0);
   v_texcoord = texcoord;
}