1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! The module containing the whole SPIR-V syntax grammar.
//!
//! It defines the syntax grammar of all instructions (their layouts
//! and operands).
//!
//! It also provides many reflect functions.

pub use self::syntax::CoreInstructionTable;
pub use self::syntax::GlslStd450InstructionTable;
pub use self::syntax::OpenCLStd100InstructionTable;
pub use self::syntax::{ExtendedInstruction, Instruction};
pub use self::syntax::{LogicalOperand, OperandKind, OperandQuantifier};

pub mod reflect;
mod syntax;