Merge pull request #104 from GabrielMajeri/export-debug

Export the DebugUtils extension
This commit is contained in:
Maik Klein 2018-08-21 15:16:32 +02:00 committed by GitHub
commit d99ac29747
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
pub use self::android_surface::AndroidSurface;
pub use self::debug_marker::DebugMarker;
pub use self::debug_report::DebugReport;
pub use self::debug_utils::DebugUtils;
pub use self::display_swapchain::DisplaySwapchain;
pub use self::ios_surface::IOSSurface;
pub use self::macos_surface::MacOSSurface;
@ -15,6 +16,7 @@ pub use self::xlib_surface::XlibSurface;
mod android_surface;
mod debug_marker;
mod debug_report;
mod debug_utils;
mod display_swapchain;
mod ios_surface;
mod macos_surface;
@ -25,4 +27,3 @@ mod wayland_surface;
mod win32_surface;
mod xcb_surface;
mod xlib_surface;
mod debug_utils;