1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*! [`Backend`] implementations [`Backend`]: ../Backend */ #[cfg(feature = "sdl2")] mod sdl2_support; #[cfg(feature = "sdl2")] pub extern crate sdl2; #[cfg(feature = "sdl2")] pub use self::sdl2_support::SdlBackend;