pub enum InstanceCreationError {
VulkanError(Result),
LayersNotPresent(SmallVec<CString>),
ExtensionsNotPresent(SmallVec<CString>),
LoaderCreation(LoaderError),
}Expand description
Errors that can occur during instance creation.
Variants
VulkanError(Result)
Vulkan Error.
LayersNotPresent(SmallVec<CString>)
One or more layers are not present.
ExtensionsNotPresent(SmallVec<CString>)
One or more extensions are not present.
LoaderCreation(LoaderError)
The instance loader creation failed.
Trait Implementations
Performs the conversion.