diff options
author | 2023-06-26 19:17:34 +0200 | |
---|---|---|
committer | 2023-06-26 19:17:34 +0200 | |
commit | ef18ecf4ef0fe654578380059b467fe2fb34aa0a (patch) | |
tree | 13f6de49d8f33ce7f4056bd36fb5e1a6e3aa8e12 /tiny_skia/src/backend.rs | |
parent | 75bd55c1f025df33bd9552a6d573ab10826e0050 (diff) | |
parent | ef87ff1e8ab24279a551b3eef6bacd8813712530 (diff) | |
download | iced-ef18ecf4ef0fe654578380059b467fe2fb34aa0a.tar.gz iced-ef18ecf4ef0fe654578380059b467fe2fb34aa0a.tar.bz2 iced-ef18ecf4ef0fe654578380059b467fe2fb34aa0a.zip |
Merge pull request #1921 from iced-rs/subpixel-glyph-positioning
Subpixel glyph positioning and layout linearity
Diffstat (limited to 'tiny_skia/src/backend.rs')
-rw-r--r-- | tiny_skia/src/backend.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tiny_skia/src/backend.rs b/tiny_skia/src/backend.rs index 9d0fc527..bcc667f9 100644 --- a/tiny_skia/src/backend.rs +++ b/tiny_skia/src/backend.rs @@ -658,12 +658,6 @@ fn adjust_clip_mask(clip_mask: &mut tiny_skia::Mask, bounds: Rectangle) { ); } -impl iced_graphics::Backend for Backend { - fn trim_measurements(&mut self) { - self.text_pipeline.trim_measurement_cache(); - } -} - impl backend::Text for Backend { const ICON_FONT: Font = Font::with_name("Iced-Icons"); const CHECKMARK_ICON: char = '\u{f00c}'; |