Initial setup.

Correctly linking glfw and spdlog...
Linking could be improved by not needing the sandbox
application to also be linked with glfw
This commit is contained in:
2022-04-20 21:40:35 +02:00
parent 2a93a78c4f
commit dab01f1541
13 changed files with 132 additions and 254 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);
}