diff options
author | 2024-09-24 22:29:03 +0200 | |
---|---|---|
committer | 2024-09-24 22:29:03 +0200 | |
commit | 26b09e1b4d13f866a0195305c9e781da27a9b483 (patch) | |
tree | 5c8887ce0504408ed7951aabad5a9adda1f1de58 /tiny_skia | |
parent | 142aba2f172c2df2572f6f5b19cdf8b2d565905a (diff) | |
download | iced-26b09e1b4d13f866a0195305c9e781da27a9b483.tar.gz iced-26b09e1b4d13f866a0195305c9e781da27a9b483.tar.bz2 iced-26b09e1b4d13f866a0195305c9e781da27a9b483.zip |
Include images and saved meshes when pasting `Frame`
`tiny_skia::Frame` was ignoring images in `Frame::paste`, making images
not show up when created in a `with_clip` context.
`wgpu::Frame` similarly did not pass through meshes in its paste method,
that may have been saved from a nested `with_clip` call.
Diffstat (limited to 'tiny_skia')
-rw-r--r-- | tiny_skia/src/geometry.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tiny_skia/src/geometry.rs b/tiny_skia/src/geometry.rs index 0d5fff62..681bf25d 100644 --- a/tiny_skia/src/geometry.rs +++ b/tiny_skia/src/geometry.rs @@ -256,6 +256,7 @@ impl geometry::frame::Backend for Frame { fn paste(&mut self, frame: Self) { self.primitives.extend(frame.primitives); self.text.extend(frame.text); + self.images.extend(frame.images); } fn translate(&mut self, translation: Vector) { |