Start the lighting chapters

This commit is contained in:
2024-12-01 22:30:42 +00:00
parent e9baa0ebe3
commit babe58f0a5
4 changed files with 72 additions and 113 deletions

7
shaders/light_frag.glsl Normal file
View File

@@ -0,0 +1,7 @@
#version 330 core
out vec4 color;
void main() {
color = vec4(1.0);
}