shaders_graphics2d/lib.rs
1#![deny(missing_docs)]
2
3//! Shaders for 2D graphics backends.
4//!
5//! Piston supports different backends for 2D using various APIs.
6//! Since these backends uses the same shader code, it makes sense
7//! to share them through a common library to simplify maintenance.
8
9pub mod colored;
10pub mod textured;
11pub mod textured_color;