aboutsummaryrefslogtreecommitdiff
path: root/src/fltk-devices-surfaces.adb
diff options
context:
space:
mode:
authorJedidiah Barber <contact@jedbarber.id.au>2024-12-23 17:02:34 +1300
committerJedidiah Barber <contact@jedbarber.id.au>2024-12-23 17:02:34 +1300
commitb3f9e96403aa5cb9d7db2330aa579356d1d58b6f (patch)
treea2f6b68e3582b128e3a7e475757696f156084962 /src/fltk-devices-surfaces.adb
parentdb014c7a249b319e40052f2cff6305b0d09d7ca5 (diff)
Tweaked the names of Surface_Device subhierarchy
Diffstat (limited to 'src/fltk-devices-surfaces.adb')
-rw-r--r--src/fltk-devices-surfaces.adb92
1 files changed, 0 insertions, 92 deletions
diff --git a/src/fltk-devices-surfaces.adb b/src/fltk-devices-surfaces.adb
deleted file mode 100644
index 58a5fa0..0000000
--- a/src/fltk-devices-surfaces.adb
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
--- Programmed by Jedidiah Barber
--- Released into the public domain
-
-
-package body FLTK.Devices.Surfaces is
-
-
- function new_fl_surface
- (G : in Storage.Integer_Address)
- return Storage.Integer_Address;
- pragma Import (C, new_fl_surface, "new_fl_surface");
- pragma Inline (new_fl_surface);
-
- procedure free_fl_surface
- (S : in Storage.Integer_Address);
- pragma Import (C, free_fl_surface, "free_fl_surface");
- pragma Inline (free_fl_surface);
-
-
-
-
- procedure fl_surface_set_current
- (S : in Storage.Integer_Address);
- pragma Import (C, fl_surface_set_current, "fl_surface_set_current");
- pragma Inline (fl_surface_set_current);
-
- function fl_surface_get_surface
- return Storage.Integer_Address;
- pragma Import (C, fl_surface_get_surface, "fl_surface_get_surface");
- pragma Inline (fl_surface_get_surface);
-
-
-
-
- procedure Finalize
- (This : in out Surface_Device) is
- begin
- if This.Void_Ptr /= Null_Pointer and This.Needs_Dealloc then
- free_fl_surface (This.Void_Ptr);
- This.Void_Ptr := Null_Pointer;
- end if;
- end Finalize;
-
-
-
-
- package body Forge is
-
- function Create
- (Graphics : in out FLTK.Devices.Graphics.Graphics_Driver)
- return Surface_Device is
- begin
- return This : Surface_Device do
- This.Void_Ptr := new_fl_surface (Wrapper (Graphics).Void_Ptr);
- end return;
- end Create;
-
- pragma Inline (Create);
-
- end Forge;
-
-
-
-
- function Get_Current
- return access Surface_Device'Class is
- begin
- return Current_Ptr;
- end Get_Current;
-
-
- procedure Set_Current
- (This : in out Surface_Device) is
- begin
- fl_surface_set_current (This.Void_Ptr);
- Current_Ptr := This'Unchecked_Access;
- end Set_Current;
-
-
-
-
-begin
-
-
- Original_Surface.Void_Ptr := fl_surface_get_surface;
- Original_Surface.Needs_Dealloc := False;
-
-
-end FLTK.Devices.Surfaces;
-