Files
maszyna/shaders/vertexonly.vert
2018-10-16 20:32:45 +02:00

9 lines
135 B
GLSL

layout(location = 0) in vec3 v_vert;
#include <common>
void main()
{
gl_Position = (projection * modelview) * vec4(v_vert, 1.0f);
}