Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MoltenVK to 1.2.11 #87

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ash-molten"
description = "Statically linked MoltenVK for Vulkan on Mac using Ash"
version = "0.19.0+1.2.8"
version = "0.20.0+1.2.11"
authors = [
"Embark <[email protected]>",
"Maik Klein <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mod mac {
use std::path::{Path, PathBuf};

// MoltenVK git tagged release to use
pub static MOLTEN_VK_VERSION: &str = "1.2.8";
pub static MOLTEN_VK_VERSION: &str = "1.2.11-b1";
pub static MOLTEN_VK_PATCH: Option<&str> = None;

// The next two are useful for different kinds of bisection to find bugs.
Expand Down Expand Up @@ -189,7 +189,7 @@ mod mac {

assert!(
curl_status.success(),
"failed to download prebuilt libraries"
"failed to download prebuilt libraries from {:?}", download_url
);

let unzip_status = Command::new("unzip")
Expand Down
Loading