diff options
Diffstat (limited to 'third_party/rust/naga/src/keywords/mod.rs')
-rw-r--r-- | third_party/rust/naga/src/keywords/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/rust/naga/src/keywords/mod.rs b/third_party/rust/naga/src/keywords/mod.rs new file mode 100644 index 0000000000..d54a1704f7 --- /dev/null +++ b/third_party/rust/naga/src/keywords/mod.rs @@ -0,0 +1,6 @@ +/*! +Lists of reserved keywords for each shading language with a [frontend][crate::front] or [backend][crate::back]. +*/ + +#[cfg(any(feature = "wgsl-in", feature = "wgsl-out"))] +pub mod wgsl; |