Struct vulkano::instance::loader::DynamicLibraryLoader[][src]

pub struct DynamicLibraryLoader { /* fields omitted */ }

Implementation of Loader that loads Vulkan from a dynamic library.

Methods

impl DynamicLibraryLoader
[src]

Tries to load the dynamic library at the given path, and tries to load vkGetInstanceProcAddr in it.

Safety

  • The dynamic library must be a valid Vulkan implementation.

Trait Implementations

impl Loader for DynamicLibraryLoader
[src]

Calls the vkGetInstanceProcAddr function. The parameters are the same. Read more

Auto Trait Implementations