pub trait FuchsiaExternalMemoryExtension: DeviceV1_0 {
    const METADATA: Extension = FUCHSIA_EXTERNAL_MEMORY_EXTENSION;

    // Provided methods
    unsafe fn get_memory_zircon_handle_fuchsia(
        &self,
        get_zircon_handle_info: &MemoryGetZirconHandleInfoFUCHSIA
    ) -> VkResult<zx_handle_t> { ... }
    unsafe fn get_memory_zircon_handle_properties_fuchsia(
        &self,
        handle_type: ExternalMemoryHandleTypeFlags,
        zircon_handle: zx_handle_t,
        memory_zircon_handle_properties: &mut MemoryZirconHandlePropertiesFUCHSIA
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = FUCHSIA_EXTERNAL_MEMORY_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§