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