pub enum DeviceCreationError {
VulkanError(Result),
UnconditionalMissing,
RequirementsNotMet,
LoaderCreation(LoaderError),
}Expand description
Errors that can occur during device creation.
Variants
VulkanError(Result)
Vulkan Error.
UnconditionalMissing
There is no physical device at the index specified by DeviceBuilder::select_nth_unconditionally.
RequirementsNotMet
No physical device met the requirements.
LoaderCreation(LoaderError)
The instance loader creation failed.
Trait Implementations
Performs the conversion.