renderling/pbr/
brdf.rs

1//! BRDF computation.
2//!
3//! Helpers for computing (and holding onto) a Bidirectional Reflectance Distribution Function.
4
5#[cfg(cpu)]
6mod cpu;
7#[cfg(cpu)]
8pub use cpu::*;
9
10pub mod shader;