pub trait KhrObjectRefreshExtension: DeviceV1_0 {
    const METADATA: Extension = KHR_OBJECT_REFRESH_EXTENSION;

    // Provided methods
    unsafe fn cmd_refresh_objects_khr(
        &self,
        command_buffer: CommandBuffer,
        refresh_objects: &RefreshObjectListKHR
    ) { ... }
    unsafe fn get_physical_device_refreshable_object_types_khr(
        &self,
        physical_device: PhysicalDevice
    ) -> VkResult<Vec<ObjectType>> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = KHR_OBJECT_REFRESH_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§