rspirv/grammar/mod.rs
1//! The module containing the whole SPIR-V syntax grammar.
2//!
3//! It defines the syntax grammar of all instructions (their layouts
4//! and operands).
5//!
6//! It also provides many reflect functions.
7
8pub use self::syntax::*;
9pub use self::syntax::{ExtendedInstruction, Instruction};
10pub use self::syntax::{LogicalOperand, OperandKind, OperandQuantifier};
11
12pub mod reflect;
13mod syntax;