diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-06 19:28:33 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-06 19:28:33 +1300 |
commit | 547e538476a788dfeb5974f9b8ad29441d18980b (patch) | |
tree | 00a3c7d80ee403969971bc4b814876b4399f3ada /body/fltk-images.adb | |
parent | befe66a0a98a58e0bdb31bb8c2db4a975a744072 (diff) |
Slightly better / more consistent comments
Diffstat (limited to 'body/fltk-images.adb')
-rw-r--r-- | body/fltk-images.adb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/body/fltk-images.adb b/body/fltk-images.adb index fdc4abd..3ce3bee 100644 --- a/body/fltk-images.adb +++ b/body/fltk-images.adb @@ -36,6 +36,8 @@ package body FLTK.Images is -- Functions From C -- ------------------------ + -- Allocation -- + function new_fl_image (W, H, D : in Interfaces.C.int) return Storage.Integer_Address; @@ -50,6 +52,8 @@ package body FLTK.Images is + -- Errors -- + function fl_image_fail (I : in Storage.Integer_Address) return Interfaces.C.int; @@ -58,6 +62,8 @@ package body FLTK.Images is + -- Copying -- + function fl_image_get_rgb_scaling return Interfaces.C.int; pragma Import (C, fl_image_get_rgb_scaling, "fl_image_get_rgb_scaling"); @@ -84,6 +90,8 @@ package body FLTK.Images is + -- Colors -- + procedure fl_image_color_average (I : in Storage.Integer_Address; C : in Interfaces.C.int; @@ -99,6 +107,8 @@ package body FLTK.Images is + -- Activity -- + procedure fl_image_inactive (I : in Storage.Integer_Address); pragma Import (C, fl_image_inactive, "fl_image_inactive"); @@ -112,6 +122,8 @@ package body FLTK.Images is + -- Dimensions -- + function fl_image_w (I : in Storage.Integer_Address) return Interfaces.C.int; @@ -139,6 +151,8 @@ package body FLTK.Images is + -- Drawing -- + procedure fl_image_draw (I : in Storage.Integer_Address; X, Y : in Interfaces.C.int); |