Now have multiple lights.

This commit is contained in:
Zed A. Shaw 2026-08-23 13:25:45 -04:00
parent a1d2c7768d
commit 1b7066757a
63 changed files with 13886 additions and 17 deletions

View file

@ -0,0 +1,11 @@
#version 330 core
layout (location = 0) in vec3 aPos; // the position variable has attribute position 0
layout (location = 1) in vec3 aColor;
out vec3 ourColor;
void main()
{
gl_Position = vec4(aPos, 1.0); // see how we directly give a vec3 to vec4's constructor
ourColor = aColor;
}