summaryrefslogtreecommitdiff
path: root/src/fltk-devices-surfaces.ads
blob: da3d0a673af265108afbe0342a3bd611b0b3ef9e (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


with

    FLTK.Devices.Graphics;


package FLTK.Devices.Surfaces is


    type Surface_Device is new Device with private;




    package Forge is

        function Create
               (Graphics : in out FLTK.Devices.Graphics.Graphics_Driver)
            return Surface_Device;

    end Forge;




    function Get_Current
        return access Surface_Device;

    procedure Set_Current
           (This : in out Surface_Device);


private


    type Surface_Device is new Device with null record;

    overriding procedure Finalize
           (This : in out Surface_Device);


    Original_Surface : aliased Surface_Device;
    Current_Ptr : access Surface_Device := Original_Surface'Access;


end FLTK.Devices.Surfaces;