summaryrefslogtreecommitdiff
path: root/body/fltk-images.adb
diff options
context:
space:
mode:
Diffstat (limited to 'body/fltk-images.adb')
-rw-r--r--body/fltk-images.adb14
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);