summaryrefslogtreecommitdiffstats
path: root/third_party/rust/glsl/src/transpiler/mod.rs
blob: cbb7d78190d15b24abc097fe7b05dc03aa4f4bec (plain)
1
2
3
4
5
6
7
8
//! GLSL transpilers – i.e. going from GLSL to anything else.
//!
//! There’s no public interface / trait to define what a transpiler is. It depends on the target
//! representation you aim.

pub mod glsl;
#[cfg(feature = "spirv")]
pub mod spirv;