diff --git a/CHANGELOG_VULKANO.md b/CHANGELOG_VULKANO.md index 3de62dac..3a444ede 100644 --- a/CHANGELOG_VULKANO.md +++ b/CHANGELOG_VULKANO.md @@ -51,6 +51,9 @@ - Fixed two bugs related to the requirements for enabled extensions: - For required extensions that have been promoted, the promoted version now also fulfills the requirement. - For features that must be enabled in tandem with extensions (e.g. `descriptor_indexing`), the requirement only applies to Vulkan 1.2 and above, since these features do not exist on earlier versions and thus cannot be enabled. +- Fix device memory builder not including p_next structures. +- Fix exportable image not created with VkExternalMemoryImageCreateInfo. +- Fix mutable bit not set on exportable image. # Version 0.26.0 (2021-10-2) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index c507c7a1..80027557 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -24,4 +24,4 @@ serde = { version = "1.0", features = ["derive"] } ron = "0.6" rand = "0.8.4" -glium = { git = "https://github.com/glium/glium.git", rev = "812416e" } \ No newline at end of file +glium = { git = "https://github.com/glium/glium.git" } \ No newline at end of file