summaryrefslogtreecommitdiffstats
path: root/third_party/rust/ash/src/extensions/ext/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/ash/src/extensions/ext/mod.rs')
-rw-r--r--third_party/rust/ash/src/extensions/ext/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/ash/src/extensions/ext/mod.rs b/third_party/rust/ash/src/extensions/ext/mod.rs
new file mode 100644
index 0000000000..1885933fa8
--- /dev/null
+++ b/third_party/rust/ash/src/extensions/ext/mod.rs
@@ -0,0 +1,9 @@
+pub use self::debug_marker::DebugMarker;
+pub use self::debug_report::DebugReport;
+pub use self::debug_utils::DebugUtils;
+pub use self::metal_surface::MetalSurface;
+
+mod debug_marker;
+mod debug_report;
+mod debug_utils;
+mod metal_surface;