diff options
Diffstat (limited to 'src/components/gfx/gfx.rs')
-rw-r--r-- | src/components/gfx/gfx.rs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/components/gfx/gfx.rs b/src/components/gfx/gfx.rs index dd7d58c7616..4a7c4e217b2 100644 --- a/src/components/gfx/gfx.rs +++ b/src/components/gfx/gfx.rs @@ -45,12 +45,6 @@ extern crate harfbuzz; #[cfg(target_os="macos")] extern crate core_graphics; #[cfg(target_os="macos")] extern crate core_text; -pub use gfx_font = font; -pub use gfx_font_context = font_context; -pub use gfx_font_list = font_list; -pub use servo_gfx_font = font; -pub use servo_gfx_font_list = font_list; - pub use render_context::RenderContext; // Private rendering modules @@ -65,7 +59,8 @@ pub mod render_task; // Fonts pub mod font; pub mod font_context; -pub mod font_list; +pub mod font_cache_task; +pub mod font_template; // Misc. mod buffer_map; |