Nigel
dab01f1541
Correctly linking glfw and spdlog... Linking could be improved by not needing the sandbox application to also be linked with glfw
7 lines
123 B
GLSL
7 lines
123 B
GLSL
#version 330 core
|
|
layout (location = 0) in vec3 aPos;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
|
|
} |