summaryrefslogtreecommitdiffstats
path: root/graphics/simpleVS.vs
blob: deae9314542cf6e04266381d85ce265a12f7ecde (plain) (blame)
1
2
3
4
5
6
7
8
#version 330 core

layout (location = 0) in vec3 position;

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