cybergrid
[vrfileman] / sdr / grid.v.glsl
1 varying vec3 pos, vpos;
2
3 void main()
4 {
5         gl_Position = ftransform();
6         pos = gl_Vertex.xyz;
7         vpos = (gl_ModelViewMatrix * gl_Vertex).xyz;
8 }