blob: cee691063625fcb5eb8bec49eef7d67d4d95b5c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
-- 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);
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;
|