1
2
3
4
5
6
7
8
9
//!
//! Contains backend specific types.
//! Most of the type user would use re-exports in the crate root.
//!
#[cfg(feature = "vulkan")]
mod vulkan;

#[cfg(feature = "vulkan")]
pub use vulkan::*;