Rename RenderContext -> PaintContext

This commit is contained in:
Tetsuharu OHZEKI 2014-12-08 03:50:35 +09:00
parent 71257e6604
commit d87def0743
4 changed files with 31 additions and 31 deletions

View file

@ -50,10 +50,10 @@ extern crate freetype;
#[cfg(target_os="macos")] extern crate core_graphics;
#[cfg(target_os="macos")] extern crate core_text;
pub use render_context::RenderContext;
pub use paint_context::PaintContext;
// Private rendering modules
mod render_context;
mod paint_context;
// Rendering
pub mod color;