Skip to content

Commit

Permalink
Add fallback library names (vulkano-rs#2230)
Browse files Browse the repository at this point in the history
  • Loading branch information
CodesOtakuYT authored and hakolao committed Feb 20, 2024
1 parent f3ec20c commit 195f93b
Showing 1 changed file with 23 additions and 10 deletions.
33 changes: 23 additions & 10 deletions vulkano/src/library.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,38 @@ impl VulkanLibrary {
#[cfg(not(target_os = "ios"))]
fn def_loader_impl() -> Result<Box<dyn Loader>, LoadingError> {
#[cfg(windows)]
fn get_path() -> &'static Path {
Path::new("vulkan-1.dll")
fn get_paths() -> [&'static Path; 1] {
[Path::new("vulkan-1.dll")]
}
#[cfg(all(unix, not(target_os = "android"), not(target_os = "macos")))]
fn get_path() -> &'static Path {
Path::new("libvulkan.so.1")
fn get_paths() -> [&'static Path; 1] {
[Path::new("libvulkan.so.1")]
}
#[cfg(target_os = "macos")]
fn get_path() -> &'static Path {
Path::new("libvulkan.1.dylib")
fn get_paths() -> [&'static Path; 3] {
[
Path::new("libvulkan.dylib"),
Path::new("libvulkan.1.dylib"),
Path::new("libMoltenVK.dylib"),
]
}
#[cfg(target_os = "android")]
fn get_path() -> &'static Path {
Path::new("libvulkan.so")
fn get_paths() -> [&'static Path; 2] {
[Path::new("libvulkan.so.1"), Path::new("libvulkan.so")]
}

let loader = unsafe { DynamicLibraryLoader::new(get_path())? };
let paths = get_paths();

Ok(Box::new(loader))
let mut err: Option<LoadingError> = None;

for path in paths {
match unsafe { DynamicLibraryLoader::new(path) } {
Ok(library) => return Ok(Box::new(library)),
Err(e) => err = Some(e),
}
}

Err(err.unwrap())
}

def_loader_impl().and_then(VulkanLibrary::with_loader)
Expand Down

0 comments on commit 195f93b

Please sign in to comment.