1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![deny(missing_docs)]
#![deny(missing_copy_implementations)]

//! An OpenGL back-end for Rust-Graphics

extern crate shader_version;
extern crate shaders_graphics2d as shaders;
extern crate image;
extern crate gl;
extern crate libc;
extern crate graphics;
extern crate freetype;

pub use shader_version::OpenGL;
pub use back_end::GlGraphics;
pub use texture::Texture;

pub mod shader_utils;
pub mod glyph_cache;
pub mod error;

mod back_end;
mod texture;