pub trait KhrPresentWaitExtension: DeviceV1_0 {
    const METADATA: Extension = KHR_PRESENT_WAIT_EXTENSION;

    // Provided method
    unsafe fn wait_for_present_khr(
        &self,
        swapchain: SwapchainKHR,
        present_id: u64,
        timeout: u64
    ) -> VkResult<SuccessCode> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_PRESENT_WAIT_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§