Cleanup workspace

This commit is contained in:
2021-09-29 19:14:27 +01:00
parent b089c76938
commit 2a93a78c4f
14 changed files with 293 additions and 428 deletions

View File

View File

@ -0,0 +1,7 @@
#version 330 core
layout (location = 0) in vec3 aPos;
void main()
{
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}