mono / VulkanSharp

Open source .NET binding for the Vulkan API
MIT License
538 stars 61 forks source link

MoltenVK/iOS support #71

Open TillAlex opened 6 years ago

TillAlex commented 6 years ago

Until now I have to compile a different version for MoltenVK/iOS with "__Internal" as library path. Would be great if VulkanSharp would support MoltenVK/iOS out of the box. Perhaps this could be achieved using dllmap in .config? Or is it better to compile one Vulkan.iOS.dll including everything from Vulkan.dll with correct library path?

TillAlex commented 6 years ago

Any news?

radekdoulik commented 5 years ago

Maybe adding this line in Vulkan.dll.config might work?

<dllmap dll="vulkan-1" os="osx" target="__Internal" />

Context: https://bugzilla.xamarin.com/show_bug.cgi?id=24943

TillAlex commented 4 years ago

Maybe adding this line in Vulkan.dll.config might work?

<dllmap dll="vulkan-1" os="osx" target="__Internal" />

Context: https://bugzilla.xamarin.com/show_bug.cgi?id=24943

Does not work for me. Anyone got this working?