From b5651ed3513ce7f32f6931f4e3547e06c4eefd32 Mon Sep 17 00:00:00 2001 From: Gabriel Majeri Date: Tue, 21 Aug 2018 16:04:57 +0300 Subject: [PATCH] Export the DebugUtils extension --- ash/src/extensions/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ash/src/extensions/mod.rs b/ash/src/extensions/mod.rs index bf9b023..db61e32 100644 --- a/ash/src/extensions/mod.rs +++ b/ash/src/extensions/mod.rs @@ -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;