You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added new interface IVulkanExt, IVulkanInstanceExt, IVulkanInstanceExtGeneric<TSelf>, IVulkanDeviceExt and IVulkanDeviceExtGeneric<TSelf> to extensions.
Added new methods string GetName(), static string Name { get; } to all extensions, static [TSelf] Create(VkDevice device); to device extensions and static [TSelf] Create(VkInstance instance) to instance extensions. GetName is implemented from the IVulkanExt interface, and on net7 or greater the static methods are implemented from IVulkanInstanceExtGeneric or IVulkanDeviceExtGeneric.
Changed linker on linux from Libdl to Libc (Thanks @hitsounds)