opengl: Add tiling for multi-textures.

This commit is contained in:
Rod Kay
2025-09-24 12:14:44 +10:00
parent 9469acaf91
commit 4dc7e235f0
20 changed files with 274 additions and 62 deletions

View File

@@ -240,6 +240,25 @@ is
procedure Tiling_is (Self : in out Item; Which : in texture_Set.texture_Id;
Now : in texture_Set.Tiling)
is
begin
raise program_Error with External_Tag (Model.item'Class (Self)'Tag) & " Model does not support texturing.";
end Tiling_is;
function Tiling (Self : in Item; Which : in texture_Set.texture_Id) return texture_Set.Tiling
is
begin
raise program_Error with External_Tag (Model.item'Class (Self)'Tag) & " Model does not support texturing.";
return (S => 0.0,
T => 0.0);
end Tiling;
function texture_Count (Self : in Item) return Natural
is
begin