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