aboutsummaryrefslogtreecommitdiff
path: root/hello.vert
blob: 4af0bdfb8505b25d47ea4ef47ae2d57652f65004 (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);
}