Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
8 lines (6 sloc) 251 Bytes
//! 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;
You can’t perform that action at this time.