pub trait KhrCalibratedTimestampsExtension: DeviceV1_0 {
    const METADATA: Extension = KHR_CALIBRATED_TIMESTAMPS_EXTENSION;

    // Provided methods
    unsafe fn get_calibrated_timestamps_khr(
        &self,
        timestamp_infos: &[impl Cast<Target = CalibratedTimestampInfoKHR>]
    ) -> VkResult<(Vec<u64>, u64)> { ... }
    unsafe fn get_physical_device_calibrateable_time_domains_khr(
        &self,
        physical_device: PhysicalDevice
    ) -> VkResult<Vec<TimeDomainKHR>> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_CALIBRATED_TIMESTAMPS_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§