KlassischeKeplerKriege/data/shader/simple.vert

7 lines
104 B
GLSL
Raw Normal View History

#version 120
varying vec3 vertex;
void main()
{
gl_Position = gl_Vertex;
vertex = gl_Position.xyz;
2016-09-29 10:28:35 +00:00
}