Skip to content

Commit

Permalink
extensions/khr/calibrated_device: Use self.handle instead of requir…
Browse files Browse the repository at this point in the history
…ing `vk::Device` argument

When introducing this new `VK_KHR_calibrated_timestamps` extension based
on `VK_EXT_calibrated_timestamps` in #890 in parallel to finalizing
and merging the `Instance`/`Device` separation in #734, I seem to have
missed an opportunity to use the newly available `self.handle` for this
extension from `struct Device`, instead leaving an unnecessary
`device: vk::Device` argument in place.
  • Loading branch information
MarijnS95 committed Mar 31, 2024
1 parent 9e36403 commit 57a8cf2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ash/src/extensions/khr/calibrated_timestamps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ impl crate::khr::calibrated_timestamps::Device {
#[inline]
pub unsafe fn get_calibrated_timestamps(
&self,
device: vk::Device,
info: &[vk::CalibratedTimestampInfoKHR<'_>],
) -> VkResult<(Vec<u64>, u64)> {
let mut timestamps = Vec::with_capacity(info.len());
let mut max_deviation = mem::MaybeUninit::uninit();
let max_deviation = (self.fp.get_calibrated_timestamps_khr)(
device,
self.handle,
info.len() as u32,
info.as_ptr(),
timestamps.as_mut_ptr(),
Expand Down

0 comments on commit 57a8cf2

Please sign in to comment.