opengl.renderer.lean: Add an 'add' procedure to allow manually managing light id's.

This commit is contained in:
Rod Kay
2024-03-10 14:25:05 +11:00
parent ccfaff517b
commit 66b60b5f8e
2 changed files with 8 additions and 0 deletions

View File

@@ -1066,6 +1066,13 @@ is
end new_Light;
procedure add (Self : in out Item; the_Light : in openGL.Light.item)
is
begin
Self.Lights.add (the_Light);
end add;
procedure set (Self : in out Item; the_Light : in openGL.Light.item)
is
begin