summaryrefslogtreecommitdiffstats
path: root/tiny_skia
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-01 00:55:49 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-01 00:55:49 +0200
commit45254ab88c6ca76759523069c2fb8734de626f02 (patch)
treee5bc22529cfe29398a52f2fbdf5b42416976c6b8 /tiny_skia
parent7c084d96958f1dacf9efae1f983bb44086fb70dc (diff)
downloadiced-45254ab88c6ca76759523069c2fb8734de626f02.tar.gz
iced-45254ab88c6ca76759523069c2fb8734de626f02.tar.bz2
iced-45254ab88c6ca76759523069c2fb8734de626f02.zip
Use `Bytes` as the `Container` of `ImageBuffer`
Since we don't need to mutate images once loaded, we avoid unnecessary extra allocations.
Diffstat (limited to 'tiny_skia')
-rw-r--r--tiny_skia/src/raster.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tiny_skia/src/raster.rs b/tiny_skia/src/raster.rs
index 176b0da9..59f1e4d5 100644
--- a/tiny_skia/src/raster.rs
+++ b/tiny_skia/src/raster.rs
@@ -83,7 +83,7 @@ impl Cache {
let id = handle.id();
if let hash_map::Entry::Vacant(entry) = self.entries.entry(id) {
- let image = graphics::image::load(handle).ok()?.into_rgba8();
+ let image = graphics::image::load(handle).ok()?;
let mut buffer =
vec![0u32; image.width() as usize * image.height() as usize];