lighting and imgui

This commit is contained in:
onTheZero
2024-10-12 19:46:28 -04:00
parent da7432d9f9
commit 237272c17b
14 changed files with 587 additions and 93 deletions

12
light.vert Normal file
View File

@@ -0,0 +1,12 @@
#version 330 core
layout (location = 0) in vec3 aPos;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main()
{
gl_Position = projection * view * model * vec4(aPos, 1.0);
}