1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Modules used to implement renderers.
//!
//! This module exports several useful software blocks you can compose to create renderers and
//! views.

pub mod color;
pub mod framebuffer;
pub mod pipeline;
pub mod projection;
pub mod shader;
pub mod texture;