#version 330 core
layout(location=0) in vec3 vertex_position_modelspace;

void main() {
	gl_Position.x = vertex_position_modelspace.x;
	gl_Position.y = vertex_position_modelspace.y;
	gl_Position.z = vertex_position_modelspace.z;
	gl_Position.w = 1.0;
}
