pub trait FuchsiaExternalSemaphoreExtension: DeviceV1_0 {
    const METADATA: Extension = FUCHSIA_EXTERNAL_SEMAPHORE_EXTENSION;

    // Provided methods
    unsafe fn get_semaphore_zircon_handle_fuchsia(
        &self,
        get_zircon_handle_info: &SemaphoreGetZirconHandleInfoFUCHSIA
    ) -> VkResult<zx_handle_t> { ... }
    unsafe fn import_semaphore_zircon_handle_fuchsia(
        &self,
        import_semaphore_zircon_handle_info: &ImportSemaphoreZirconHandleInfoFUCHSIA
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = FUCHSIA_EXTERNAL_SEMAPHORE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§