summaryrefslogtreecommitdiffstats
path: root/wgpu/src/text.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-02 00:58:33 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2023-05-02 01:02:33 +0200
commitedf3432bf5176be13437b9fd5d25b890ec9dbe69 (patch)
tree6acba55171f28af1a3c9c4e65a99ad10abc11c65 /wgpu/src/text.rs
parent4bd290afe7d81d9aaf7467b3ce91491f6600261a (diff)
downloadiced-edf3432bf5176be13437b9fd5d25b890ec9dbe69.tar.gz
iced-edf3432bf5176be13437b9fd5d25b890ec9dbe69.tar.bz2
iced-edf3432bf5176be13437b9fd5d25b890ec9dbe69.zip
Update `glyphon` and `cosmic-text`
Diffstat (limited to 'wgpu/src/text.rs')
-rw-r--r--wgpu/src/text.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/wgpu/src/text.rs b/wgpu/src/text.rs
index fc126125..ad7bdc8d 100644
--- a/wgpu/src/text.rs
+++ b/wgpu/src/text.rs
@@ -311,6 +311,13 @@ fn to_stretch(stretch: font::Stretch) -> glyphon::Stretch {
}
}
+fn to_shaping(shaping: Shaping) -> glyphon::Shaping {
+ match shaping {
+ Shaping::Basic => glyphon::Shaping::Basic,
+ Shaping::Advanced => glyphon::Shaping::Advanced,
+ }
+}
+
struct Cache {
entries: FxHashMap<KeyHash, glyphon::Buffer>,
recently_used: FxHashSet<KeyHash>,
@@ -369,7 +376,7 @@ impl Cache {
.family(to_family(key.font.family))
.weight(to_weight(key.font.weight))
.stretch(to_stretch(key.font.stretch)),
- matches!(key.shaping, Shaping::Basic),
+ to_shaping(key.shaping),
);
let _ = entry.insert(buffer);