1
2
3
4
5
6
7
8
9
10
11
12
//------------------------------------------------------------------------------
// Luke Titley : from+usd_rs@luketitley.com
//------------------------------------------------------------------------------

//! UsdShade provides schemas and behaviors for creating and binding materials,
//! which encapsulate shading networks.

mod material;
mod shader;

pub use material::*;
pub use shader::*;