Skip to content

Commit 20ef463

Browse files
committed
Generate on Linux (differs slightly from Windows)
Will regenerate using Windows or whichever platform is preferred later for consistency.
1 parent f7c38b0 commit 20ef463

File tree

1,020 files changed

+2911
-2015
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,020 files changed

+2911
-2015
lines changed

.silktouch/34f29eca37f140e7.stout

1.6 MB
Binary file not shown.

sources/Vulkan/Vulkan/IVulkan/IVulkan.gen.cs

Lines changed: 442 additions & 442 deletions
Large diffs are not rendered by default.

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureBuildGeometryInfoKHR.gen.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5-
using System;
65
using System.Runtime.CompilerServices;
7-
using System.Runtime.InteropServices;
86

97
namespace Silk.NET.Vulkan;
108

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureBuildRangeInfoKHR.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
56
using System.Runtime.CompilerServices;
67
using System.Runtime.InteropServices;
78

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureBuildSizesInfoKHR.gen.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
56
using System.Runtime.CompilerServices;
67
using System.Runtime.InteropServices;
78

@@ -40,7 +41,7 @@ public unsafe partial struct AccelerationStructureBuildSizesInfoKHR
4041
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
4142
]
4243
)]
43-
public ulong AccelerationStructureSize;
44+
public nuint AccelerationStructureSize;
4445

4546
[NativeTypeName("VkDeviceSize")]
4647
[SupportedApiProfile(
@@ -51,7 +52,7 @@ public unsafe partial struct AccelerationStructureBuildSizesInfoKHR
5152
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
5253
]
5354
)]
54-
public ulong UpdateScratchSize;
55+
public nuint UpdateScratchSize;
5556

5657
[NativeTypeName("VkDeviceSize")]
5758
[SupportedApiProfile(
@@ -62,5 +63,5 @@ public unsafe partial struct AccelerationStructureBuildSizesInfoKHR
6263
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
6364
]
6465
)]
65-
public ulong BuildScratchSize;
66+
public nuint BuildScratchSize;
6667
}

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureBuildTypeKHR.gen.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
56
using System.Runtime.CompilerServices;
67
using System.Runtime.InteropServices;
78

89
namespace Silk.NET.Vulkan;
910

11+
[NativeTypeName("unsigned int")]
1012
[SupportedApiProfile("vulkan")]
11-
public enum AccelerationStructureBuildTypeKHR
13+
public enum AccelerationStructureBuildTypeKHR : uint
1214
{
1315
[SupportedApiProfile(
1416
"vulkan",

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureCompatibilityKHR.gen.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88

99
namespace Silk.NET.Vulkan;
1010

11+
[NativeTypeName("unsigned int")]
1112
[SupportedApiProfile("vulkan")]
12-
public enum AccelerationStructureCompatibilityKHR
13+
public enum AccelerationStructureCompatibilityKHR : uint
1314
{
1415
[SupportedApiProfile(
1516
"vulkan",

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureCreateInfoKHR.gen.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public unsafe partial struct AccelerationStructureCreateInfoKHR
6363
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
6464
]
6565
)]
66-
public ulong Offset;
66+
public nuint Offset;
6767

6868
[NativeTypeName("VkDeviceSize")]
6969
[SupportedApiProfile(
@@ -74,7 +74,7 @@ public unsafe partial struct AccelerationStructureCreateInfoKHR
7474
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
7575
]
7676
)]
77-
public ulong Size;
77+
public nuint Size;
7878

7979
[SupportedApiProfile(
8080
"vulkan",
@@ -95,5 +95,5 @@ public unsafe partial struct AccelerationStructureCreateInfoKHR
9595
"VK_KHR_deferred_host_operations+VK_VERSION_1_2",
9696
]
9797
)]
98-
public ulong DeviceAddress;
98+
public nuint DeviceAddress;
9999
}

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureCreateInfoNV.gen.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5-
using System;
65
using System.Runtime.CompilerServices;
76
using System.Runtime.InteropServices;
87

@@ -41,7 +40,7 @@ public unsafe partial struct AccelerationStructureCreateInfoNV
4140
"VK_VERSION_1_1",
4241
]
4342
)]
44-
public ulong CompactedSize;
43+
public nuint CompactedSize;
4544

4645
[SupportedApiProfile(
4746
"vulkan",

sources/Vulkan/Vulkan/Vulkan/AccelerationStructureDeviceAddressInfoKHR.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// Ported from the Vulkan headers and corresponding dependencies.
44
// Original source is Copyright 2015-2023 The Khronos Group Inc. Licensed under the MIT license.
5+
using System;
56
using System.Runtime.CompilerServices;
67
using System.Runtime.InteropServices;
78

0 commit comments

Comments
 (0)