diff options
author | 2024-04-01 11:42:11 +0200 | |
---|---|---|
committer | 2024-04-01 11:42:11 +0200 | |
commit | 14ed71e09b648693dfca9eb29f14147c5c03a6bc (patch) | |
tree | a11d3e6533485c5811f0f42d4cf5518c30626bdf /graphics/src/renderer.rs | |
parent | c7a4fad4a24dec8536f450d447a9852846f2d711 (diff) | |
parent | 6216c513d5e5853bf1d43342094e91a74981f4f2 (diff) | |
download | iced-14ed71e09b648693dfca9eb29f14147c5c03a6bc.tar.gz iced-14ed71e09b648693dfca9eb29f14147c5c03a6bc.tar.bz2 iced-14ed71e09b648693dfca9eb29f14147c5c03a6bc.zip |
Merge pull request #2360 from iced-rs/avoid-fill-text-allocation
Use generic `Content` in `Text` to avoid reallocation in `fill_text`
Diffstat (limited to 'graphics/src/renderer.rs')
-rw-r--r-- | graphics/src/renderer.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/renderer.rs b/graphics/src/renderer.rs index f517ff3e..fb1a0d73 100644 --- a/graphics/src/renderer.rs +++ b/graphics/src/renderer.rs @@ -163,13 +163,13 @@ where fn fill_text( &mut self, - text: Text<'_, Self::Font>, + text: Text, position: Point, color: Color, clip_bounds: Rectangle, ) { self.primitives.push(Primitive::Text { - content: text.content.to_string(), + content: text.content, bounds: Rectangle::new(position, text.bounds), size: text.size, line_height: text.line_height, |