XRay3D/test/shader/basic.vert
2020-04-17 18:11:57 +02:00

10 lines
119 B
GLSL

uniform mat4 modelview;
uniform mat4 projection;
void main()
{
gl_Position = projection * modelview * gl_Vertex;
}