1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-27 12:23:46 +03:00
This commit is contained in:
Wez Furlong 2018-02-22 21:14:56 -08:00
parent 8d6364fa80
commit 296c27d3ff
3 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
//! Systems that use fontconfig and freetype
pub use self::fcwrap::Pattern as FontPattern;
use super::hbwrap as harfbuzz;
use config::{Config, TextStyle};
use failure::{self, Error};
use font::{shape_with_harfbuzz, FallbackIdx, Font, FontMetrics, FontSystem, GlyphInfo, NamedFont,
RasterizedGlyph};
use font::{fcwrap, ftwrap};
use super::hbwrap as harfbuzz;
use std::cell::RefCell;
use std::mem;
use std::slice;

View File

@ -3,8 +3,8 @@
#[cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))]
use freetype;
use harfbuzz_sys as harfbuzz;
pub use self::harfbuzz::*;
use harfbuzz_sys as harfbuzz;
use failure::Error;

View File

@ -1,8 +1,8 @@
//! Abstracts over the font selection system for the system
use super::hbwrap as harfbuzz;
use super::super::config::{Config, TextStyle};
use failure::Error;
use super::hbwrap as harfbuzz;
use unicode_width::UnicodeWidthStr;
/// A bitmap representation of a glyph.