summaryrefslogtreecommitdiff
path: root/engine/vertex.glsl
blob: c74ea10c9bfa77345653cc4e7efd25acaa2e7365 (plain)
1
2
3
4
5
6
7
#version 330 core
layout (location = 0) in vec3 aPos;

void main()
{
    gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}