pub trait KhrExternalSemaphoreFdExtension: DeviceV1_0 {
    const METADATA: Extension = KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION;

    // Provided methods
    unsafe fn get_semaphore_fd_khr(
        &self,
        get_fd_info: &SemaphoreGetFdInfoKHR
    ) -> VkResult<c_int> { ... }
    unsafe fn import_semaphore_fd_khr(
        &self,
        import_semaphore_fd_info: &ImportSemaphoreFdInfoKHR
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_EXTERNAL_SEMAPHORE_FD_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§