pub trait KhrMapMemory2Extension: DeviceV1_0 {
    const METADATA: Extension = KHR_MAP_MEMORY2_EXTENSION;

    // Provided methods
    unsafe fn map_memory2_khr(
        &self,
        memory_map_info: &MemoryMapInfoKHR
    ) -> VkResult<*mut c_void> { ... }
    unsafe fn unmap_memory2_khr(
        &self,
        memory_unmap_info: &MemoryUnmapInfoKHR
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_MAP_MEMORY2_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§