mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
Remove unused font_cache.rs and font_list_handle.rs.
This commit is contained in:
parent
b3d502b29a
commit
a2589dbfec
2 changed files with 0 additions and 36 deletions
|
@ -1,36 +0,0 @@
|
|||
/*
|
||||
use font::{Font, FontStyle, FontWeight300};
|
||||
use native::{FontHandle, FontContext};
|
||||
|
||||
// Font cache that reuses gfx::Font instances.
|
||||
|
||||
struct FontCache {
|
||||
fctx: @FontContext,
|
||||
mut cached_font: Option<@Font>
|
||||
}
|
||||
|
||||
impl FontCache {
|
||||
static pub fn new(fctx: @FontContext) -> FontCache {
|
||||
FontCache {
|
||||
fctx: fctx,
|
||||
cached_font: None
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_test_font(@self) -> @Font {
|
||||
|
||||
|
||||
return match self.cached_font {
|
||||
Some(font) => font,
|
||||
None => match self.get_font(&dummy_style) {
|
||||
Ok(font) => { self.cached_font = Some(font); font }
|
||||
Err(*) => fail
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
pub fn get_font(@self, style: &FontStyle) -> Result<@Font, ()> {
|
||||
self.create_font(style)
|
||||
}
|
||||
}
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue