diff --git a/Changelog.md b/Changelog.md index 2880350..903f4e6 100644 --- a/Changelog.md +++ b/Changelog.md @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `GetSurfaceCapabilities2::get_physical_device_surface_capabilities2()` - Define `Display` as `c_void` instead of `*mut c_void` to match Xlib (#751) - `VK_KHR_device_group_creation`: Take borrow of `Entry` in `fn new()` (#753) +- `VK_KHR_device_group_creation`: Rename `vk::Instance`-returning function from `device()` to `instance()` (#759) ### Removed diff --git a/ash/src/extensions/khr/device_group_creation.rs b/ash/src/extensions/khr/device_group_creation.rs index 8571af3..ffba60a 100644 --- a/ash/src/extensions/khr/device_group_creation.rs +++ b/ash/src/extensions/khr/device_group_creation.rs @@ -57,7 +57,7 @@ impl DeviceGroupCreation { } #[inline] - pub fn device(&self) -> vk::Instance { + pub fn instance(&self) -> vk::Instance { self.handle } }