opengl.shaders: Allow up to 50 lights in fragment shaders.

This commit is contained in:
Rod Kay
2024-02-23 18:00:48 +11:00
parent 1937fb28c5
commit 4717490e43
7 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ uniform vec3 camera_Site;
uniform vec3 specular_Color; // The materials specular color.
uniform int light_Count;
uniform light Lights [10];
uniform light Lights [50];
in vec3 frag_Site;