pub struct VulkanoConfig {
    pub instance_create_info: InstanceCreateInfo,
    pub debug_create_info: Option<DebugUtilsMessengerCreateInfo>,
    pub device_filter_fn: Arc<dyn Fn(&PhysicalDevice) -> bool>,
    pub device_priority_fn: Arc<dyn Fn(&PhysicalDevice) -> u32>,
    pub device_extensions: DeviceExtensions,
    pub device_features: Features,
    pub print_device_name: bool,
}
Expand description

A configuration struct to pass various creation options to create VulkanoContext.

Instance extensions that are required for surface creation will be appended to the config when creating VulkanoContext.

Fields

instance_create_info: InstanceCreateInfodebug_create_info: Option<DebugUtilsMessengerCreateInfo>

Pass the DebugUtilsMessengerCreateInfo to create the debug callback for printing debug information at runtime.

device_filter_fn: Arc<dyn Fn(&PhysicalDevice) -> bool>

Pass filter function for your physical device selection. See default for example.

device_priority_fn: Arc<dyn Fn(&PhysicalDevice) -> u32>

Pass priority order function for your physical device selection. See default for example.

device_extensions: DeviceExtensionsdevice_features: Featuresprint_device_name: bool

Print your selected device name at start.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.