naga/common/mod.rs
1//! Code common to the front and backends for specific languages.
2
3mod diagnostic_debug;
4mod diagnostic_display;
5pub mod predeclared;
6pub mod wgsl;
7
8pub use diagnostic_debug::{DiagnosticDebug, ForDebug, ForDebugWithTypes};
9pub use diagnostic_display::DiagnosticDisplay;
10
11// Re-exported here for backwards compatibility
12pub use super::proc::vector_size_str;