summaryrefslogtreecommitdiff
path: root/wimmel.vert
blob: fe26ecc0080317633367e3aef7907ce35e2dc1d1 (plain)
1
2
3
4
5
6
7
8
9
10
uniform mat4 proj;
attribute vec4 position;
attribute vec2 texcoord;
varying vec2 v_texcoord;

void main()
{
	gl_Position = proj * position;
	v_texcoord = texcoord;
}