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
For example:
public partial void GetPhysicalDeviceMemoryProperties2(PhysicalDevice physicalDevice, out PhysicalDeviceMemoryProperties2 pMemoryProperties);
This overload just does not work because Vulkan expects the struct to have the proper SType property set. Also without specifying a pNext chain, this overload would (even if it worked as expected) do little more than the normal GetPhysicalDeviceMemoryProperties function.
Possible fixes:
Removal of these methods
Create the structs with the right SType set
Find a way to specify a pNext chain (probably in combination with 1)