spirv/
lib.rs

1//! The SPIR-V header.
2//!
3//! This crate contains Rust definitions of all SPIR-V structs, enums,
4//! and constants.
5//!
6//! The version of this crate is the version of SPIR-V it contains.
7
8#![no_std]
9#![allow(non_camel_case_types)]
10#![cfg_attr(rustfmt, rustfmt_skip)]
11
12use bitflags::bitflags;
13
14include!("autogen_spirv.rs");