XRay3D/test/shader/basic.vert

10 lines
119 B
GLSL
Raw Permalink Normal View History

2020-04-17 18:11:57 +02:00
uniform mat4 modelview;
uniform mat4 projection;
void main()
{
gl_Position = projection * modelview * gl_Vertex;
}