7 lines
109 B
GLSL
7 lines
109 B
GLSL
varying vec3 pos;
|
|
|
|
void main()
|
|
{
|
|
pos = (gl_ModelViewMatrix * gl_Vertex).xyz;
|
|
gl_Position = ftransform();
|
|
} |