gfx: Paint in parallel in CPU painting mode

This commit is contained in:
Patrick Walton 2014-10-21 16:04:15 -07:00
parent f5e8df9dac
commit 55222336b5
4 changed files with 316 additions and 189 deletions

View file

@ -231,4 +231,9 @@ impl FontContext {
});
render_font
}
/// Returns a reference to the font cache task.
pub fn font_cache_task(&self) -> FontCacheTask {
self.font_cache_task.clone()
}
}