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

7
light.frag Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0); // set all 4 vector values to 1.0
}