summaryrefslogtreecommitdiff
path: root/spec/fltk-images-shared.ads
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2025-02-06 19:28:33 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2025-02-06 19:28:33 +1300
commit547e538476a788dfeb5974f9b8ad29441d18980b (patch)
tree00a3c7d80ee403969971bc4b814876b4399f3ada /spec/fltk-images-shared.ads
parentbefe66a0a98a58e0bdb31bb8c2db4a975a744072 (diff)
Slightly better / more consistent comments
Diffstat (limited to 'spec/fltk-images-shared.ads')
-rw-r--r--spec/fltk-images-shared.ads23
1 files changed, 6 insertions, 17 deletions
diff --git a/spec/fltk-images-shared.ads b/spec/fltk-images-shared.ads
index dce9254..c1bbdbd 100644
--- a/spec/fltk-images-shared.ads
+++ b/spec/fltk-images-shared.ads
@@ -12,10 +12,6 @@ with
package FLTK.Images.Shared is
- -------------
- -- Types --
- -------------
-
type Shared_Image is new Image with private;
type Shared_Image_Reference (Data : not null access Shared_Image'Class) is
@@ -24,10 +20,6 @@ package FLTK.Images.Shared is
- --------------------
- -- Construction --
- --------------------
-
package Forge is
function Create
@@ -46,6 +38,11 @@ package FLTK.Images.Shared is
end Forge;
+
+
+
+ -- Copying --
+
function Copy
(This : in Shared_Image;
Width, Height : in Natural)
@@ -58,9 +55,7 @@ package FLTK.Images.Shared is
- --------------
-- Colors --
- --------------
procedure Color_Average
(This : in out Shared_Image;
@@ -73,9 +68,7 @@ package FLTK.Images.Shared is
- ----------------
-- Activity --
- ----------------
function Number_Of_Images
return Natural;
@@ -101,9 +94,7 @@ package FLTK.Images.Shared is
- ---------------
-- Drawing --
- ---------------
procedure Set_Scaling_Algorithm
(To : in Scaling_Kind);
@@ -135,11 +126,9 @@ private
pragma Inline (Copy);
-
pragma Inline (Color_Average);
pragma Inline (Desaturate);
-
pragma Inline (Number_Of_Images);
pragma Inline (Name);
pragma Inline (Original);
@@ -147,7 +136,6 @@ private
pragma Inline (Reload);
pragma Inline (Uncache);
-
pragma Inline (Set_Scaling_Algorithm);
pragma Inline (Scale);
pragma Inline (Draw);
@@ -155,3 +143,4 @@ private
end FLTK.Images.Shared;
+