piston2d-gfx_graphics 0.1.22

A Gfx 2D back-end for the Piston game engine
#![deny(missing_docs)]

//! A Piston 2D graphics back-end using gfx-rs.

#[macro_use]
extern crate gfx;
extern crate gfx_texture;
extern crate graphics;
extern crate shaders_graphics2d as shaders;

pub use gfx_texture::Texture;
pub use gfx_texture::Settings as TextureSettings;

pub use back_end::{ Gfx2d, GfxGraphics };
pub use glyph::GlyphCache;

mod back_end;
mod glyph;