blob: e010ff4b205ba778ff33dc3b9109e3216e62d4b8 (
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
|
-- This file is part of VulkAda.
-- VulkAda is free software: you can redistribute it and/or modify
-- it under the terms of the GNU Lesser General Public License as
-- published by the Free Software Foundation, either version 3 of
-- the License, or (at your option) any later version.
-- VulkAda is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU Lesser General Public License for more details.
-- You should have received a copy of the GNU Lesser General Public
-- License along with VulkAda.
-- If not, see <http://www.gnu.org/licenses/>.
-- Copyright 2025 Phaser Cat Games LLC
-- C interface to the surface protected capabilities extension
with Vulkan.Utilities;
with Vulkan.Extension_Records;
package body Vulkan.Extensions.KHR_Surface_Protected_Capabilities_C is
function To_C(Struct: in KHR.Surface_Protected_Capabilities)
return Surface_Protected_Capabilities_C is
SPCC: Surface_Protected_Capabilities_C;
begin
SPCC.Next := Extension_Records.To_C(Struct.Next);
SPCC.Supports_Protected := Utilities.To_C(Struct.Supports_Protected);
return SPCC;
end To_C;
procedure Free(Struct: in out Surface_Protected_Capabilities_C) is
begin
Extension_Records.Free(Struct.Next);
end Free;
function To_C(Next: in In_Structure_Access)
return C.In_Structure_C_Access is
begin
if Next = null then
return null;
end if;
case Structure(Next.Record_Type) is
when Surface_Protected_Capabilities_Type =>
declare
function Make_Struct is new Utilities.Make_In_Struct
(KHR.Surface_Protected_Capabilities,
Surface_Protected_Capabilities_C,
Surface_Protected_Capabilities_C_Access);
begin
return Make_Struct(Next);
end;
end case;
end To_C;
procedure Free(Next: in out C.In_Structure_C_Access) is
use type C.In_Structure_C_Access;
begin
if Next = null then
return;
end if;
case Structure(Next.Record_Type) is
when Surface_Protected_Capabilities_Type =>
declare
procedure Free_Struct is new Utilities.Free_In_Struct
(Surface_Protected_Capabilities_C,
Surface_Protected_Capabilities_C_Access);
begin
Free_Struct(Next);
end;
end case;
end Free;
end Vulkan.Extensions.KHR_Surface_Protected_Capabilities_C;
|