rspirv/sr/
mod.rs

1//! **S**tructured **r**epresentation of various SPIR-V language constructs.
2
3pub use self::autogen_decoration::Decoration;
4pub use self::autogen_instructions as instructions;
5pub use self::autogen_ops as ops;
6pub use self::constants::Constant;
7pub use self::types::{StructMember, Type};
8
9mod autogen_decoration;
10pub mod autogen_instructions;
11pub mod autogen_ops;
12mod constants;
13pub mod module;
14pub mod storage;
15mod types;