Trait vulkano::instance::loader::Loader[][src]

pub unsafe trait Loader {
    fn get_instance_proc_addr(
        &self,
        instance: Instance,
        name: *const c_char
    ) -> *const c_void; }
Expand description

Implemented on objects that grant access to a Vulkan implementation.

Required methods

Calls the vkGetInstanceProcAddr function. The parameters are the same.

The returned function must stay valid for as long as self is alive.

Implementors