rend3-routine 0.3.0

Customizable Render Routines for the rend3 rendering library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Common utilities used throughout the crate.

mod interfaces;
mod samplers;
mod shaders;
mod sorting;
mod vertex;

pub use interfaces::*;
pub use samplers::*;
pub use shaders::*;
pub use sorting::*;
pub use vertex::*;