foo
[andemo] / sdr / foo.v.glsl
1 attribute vec4 attr_vertex;
2 attribute vec2 attr_texcoord;
3
4 varying vec2 texcoord;
5
6 void main()
7 {
8         gl_Position = attr_vertex;
9         texcoord = attr_texcoord;
10 }