- asset loader (needed for android)
[andemo] / sdr / foo.v.glsl
1 attribute vec4 apos;
2 attribute vec2 atex;
3
4 varying vec2 texcoord;
5
6 void main()
7 {
8         gl_Position = apos;
9         texcoord = atex;
10 }