librashader/librashader-reflect/src/lib.rs

12 lines
256 B
Rust
Raw Normal View History

2023-01-17 15:09:07 +11:00
//! Shader reflection and cross-compilation for librashader.
#![feature(type_alias_impl_trait)]
2022-12-01 14:50:57 +11:00
/// Shader codegen backends.
pub mod back;
2022-12-01 14:50:57 +11:00
/// Error types.
2022-11-07 16:25:11 +11:00
pub mod error;
2022-12-01 14:50:57 +11:00
/// Shader frontend parsers.
2022-11-07 16:25:11 +11:00
pub mod front;
2022-12-01 14:50:57 +11:00
/// Shader reflection.
2022-11-07 16:25:11 +11:00
pub mod reflect;