Skip to content

Commit f1b6557

Browse files
authored
Vulkan: Add MoltenVK and portability to MacOS library names (#1419)
* Vulkan: Add MoltenVK and portability to MacOS library names MoltenVK is (obviously) above portability, and while gfx-rs/portability is dead development wise, there are likely people who want to package it with their app and use it for whatever reason, so lets shove it at the end of the libnames to check, since we are able to, and shouldnt hurt anything * Vulkan: Remove libportability
1 parent 05a5c97 commit f1b6557

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Vulkan/Silk.NET.Vulkan/VulkanLibraryNameContainer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ internal class VulkanLibraryNameContainer : SearchPathContainer
1414
public override string[] Linux => new[] { "libvulkan.so.1" };
1515

1616
/// <inheritdoc />
17-
public override string[] MacOS => new[] { "libvulkan.dylib" };
17+
public override string[] MacOS => new[] { "libvulkan.dylib", "libMoltenVK.dylib" };
1818

1919
/// <inheritdoc />
2020
public override string[] Android => new[] { "libvulkan.so" };

0 commit comments

Comments
 (0)