pub trait KhrExternalSemaphoreWin32Extension: DeviceV1_0 {
    const METADATA: Extension = KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION;

    // Provided methods
    unsafe fn get_semaphore_win32_handle_khr(
        &self,
        get_win32_handle_info: &SemaphoreGetWin32HandleInfoKHR
    ) -> VkResult<HANDLE> { ... }
    unsafe fn import_semaphore_win32_handle_khr(
        &self,
        import_semaphore_win32_handle_info: &ImportSemaphoreWin32HandleInfoKHR
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_EXTERNAL_SEMAPHORE_WIN32_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§