diff --git a/Changelog.md b/Changelog.md index 8ce05df1b..206cf1b10 100644 --- a/Changelog.md +++ b/Changelog.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added `VK_EXT_shader_object` device extension (#732) - Added missing `Device::get_device_queue2()` wrapper (#736) - Exposed `FramebufferCreateInfo::attachment_count()` builder for `vk::FramebufferCreateFlags::IMAGELESS` (#747) -- Allow building `Entry`/`Instance`/`Device` from handle+fns (#748) +- Allow building `Entry`/`Instance`/`Device` from handle+fns (see their `from_parts_x_x()` associated functions) (#748) ### Changed diff --git a/ash/src/entry.rs b/ash/src/entry.rs index f3052e2c7..6f29833d2 100644 --- a/ash/src/entry.rs +++ b/ash/src/entry.rs @@ -155,7 +155,7 @@ impl Entry { } #[inline] - pub fn from_parts_1_1( + pub unsafe fn from_parts_1_1( static_fn: vk::StaticFn, entry_fn_1_0: vk::EntryFnV1_0, entry_fn_1_1: vk::EntryFnV1_1,