Rename xlibsurface to xlib_surface

This commit is contained in:
maik klein 2016-12-29 05:07:56 +01:00
parent d5a812e8b5
commit 7ece1e7d5a
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
pub use self::swapchain::Swapchain;
pub use self::surface::Surface;
pub use self::xlibsurface::XlibSurface;
pub use self::xlib_surface::XlibSurface;
pub use self::debug_report::DebugReport;
pub use self::win32_surface::Win32Surface;
pub use self::mir_surface::MirSurface;
@ -10,7 +10,7 @@ pub use self::android_surface::AndroidSurface;
mod swapchain;
mod surface;
mod xlibsurface;
mod xlib_surface;
mod win32_surface;
mod debug_report;
mod mir_surface;