We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc53cf4 commit 54322bfCopy full SHA for 54322bf
4 files changed
.silktouch/d48a9fc4a502f7c6.stout
0 Bytes
generator.json
@@ -208,6 +208,9 @@
208
},
209
"AddVTables": {
210
"VTables": [
211
+ {
212
+ "Kind": "DllImport"
213
+ },
214
{
215
"Kind": "ThisThread",
216
"IsDefault": true
sources/Vulkan/Vulkan/Vk.gen.cs
@@ -12,6 +12,11 @@ namespace Silk.NET.Vulkan;
12
13
partial class Vk(INativeContext nativeContext) : IDisposable
14
15
+ public partial class DllImport
16
17
+ static DllImport() => LoaderInterface.RegisterHook(Assembly.GetExecutingAssembly());
18
+ }
19
+
20
public partial class ThisThread : IVk.Static
21
22
public static ThreadLocal<IVk> Underlying { get; } = new();
0 commit comments