diff options
author | UK992 <urbankrajnc92@gmail.com> | 2016-09-08 17:47:32 +0200 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2016-09-09 04:55:19 +0200 |
commit | 93a103ba7306b578841b73a0ecfbccaad8fc78c1 (patch) | |
tree | a8855004b4309212182505b0cf72f116d846c4cb /components/gfx/text | |
parent | 875981ece592b03bcf06f16b6613ddabfa11133f (diff) | |
download | servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.tar.gz servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.zip |
Reorder `use` statements
Diffstat (limited to 'components/gfx/text')
-rw-r--r-- | components/gfx/text/glyph.rs | 2 | ||||
-rw-r--r-- | components/gfx/text/shaping/harfbuzz.rs | 16 | ||||
-rw-r--r-- | components/gfx/text/text_run.rs | 2 |
3 files changed, 10 insertions, 10 deletions
diff --git a/components/gfx/text/glyph.rs b/components/gfx/text/glyph.rs index 26b5a5a0ed2..5628547a417 100644 --- a/components/gfx/text/glyph.rs +++ b/components/gfx/text/glyph.rs @@ -7,9 +7,9 @@ use euclid::point::Point2D; use range::{self, EachIndex, Range, RangeIndex}; #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] use simd::u32x4; +use std::{fmt, mem, u16}; use std::cmp::{Ordering, PartialOrd}; use std::vec::Vec; -use std::{fmt, mem, u16}; pub use gfx_traits::ByteIndex; diff --git a/components/gfx/text/shaping/harfbuzz.rs b/components/gfx/text/shaping/harfbuzz.rs index ba5f281c04d..9f9f1e16751 100644 --- a/components/gfx/text/shaping/harfbuzz.rs +++ b/components/gfx/text/shaping/harfbuzz.rs @@ -8,6 +8,14 @@ use app_units::Au; use euclid::Point2D; use font::{DISABLE_KERNING_SHAPING_FLAG, Font, FontTableMethods, FontTableTag}; use font::{IGNORE_LIGATURES_SHAPING_FLAG, KERN, RTL_FLAG, ShapingOptions}; +use harfbuzz::{HB_DIRECTION_LTR, HB_DIRECTION_RTL, HB_MEMORY_MODE_READONLY}; +use harfbuzz::{hb_blob_create, hb_face_create_for_tables}; +use harfbuzz::{hb_buffer_create, hb_font_destroy}; +use harfbuzz::{hb_buffer_get_glyph_infos, hb_shape}; +use harfbuzz::{hb_buffer_set_direction, hb_buffer_set_script}; +use harfbuzz::{hb_buffer_t, hb_codepoint_t, hb_font_funcs_t}; +use harfbuzz::{hb_face_t, hb_font_t}; +use harfbuzz::{hb_position_t, hb_tag_t}; use harfbuzz::hb_blob_t; use harfbuzz::hb_bool_t; use harfbuzz::hb_buffer_add_utf8; @@ -26,14 +34,6 @@ use harfbuzz::hb_font_set_ppem; use harfbuzz::hb_font_set_scale; use harfbuzz::hb_glyph_info_t; use harfbuzz::hb_glyph_position_t; -use harfbuzz::{HB_DIRECTION_LTR, HB_DIRECTION_RTL, HB_MEMORY_MODE_READONLY}; -use harfbuzz::{hb_blob_create, hb_face_create_for_tables}; -use harfbuzz::{hb_buffer_create, hb_font_destroy}; -use harfbuzz::{hb_buffer_get_glyph_infos, hb_shape}; -use harfbuzz::{hb_buffer_set_direction, hb_buffer_set_script}; -use harfbuzz::{hb_buffer_t, hb_codepoint_t, hb_font_funcs_t}; -use harfbuzz::{hb_face_t, hb_font_t}; -use harfbuzz::{hb_position_t, hb_tag_t}; use libc::{c_char, c_int, c_uint, c_void}; use platform::font::FontTable; use std::{char, cmp, ptr}; diff --git a/components/gfx/text/text_run.rs b/components/gfx/text/text_run.rs index 390f8b5c3d3..a431a124239 100644 --- a/components/gfx/text/text_run.rs +++ b/components/gfx/text/text_run.rs @@ -3,8 +3,8 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use app_units::Au; -use font::ShapingOptions; use font::{Font, FontHandleMethods, FontMetrics, IS_WHITESPACE_SHAPING_FLAG, RunMetrics}; +use font::ShapingOptions; use platform::font_template::FontTemplateData; use range::Range; use std::cell::Cell; |