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

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

extern crate shader_version;
extern crate shaders_graphics2d_gles as shaders;
extern crate image;
extern crate graphics;
extern crate rusttype;
extern crate texture as texture_lib;

pub use shader_version::OpenGL;
pub use crate::back_end::GlGraphics;
pub use crate::texture::Texture;
pub use texture_lib::*;

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

#[allow(non_upper_case_globals, missing_docs)]
pub mod gl;

mod back_end;
mod texture;
mod draw_state;