diff options
author | 2024-09-24 22:29:03 +0200 | |
---|---|---|
committer | 2024-09-24 22:29:03 +0200 | |
commit | 26b09e1b4d13f866a0195305c9e781da27a9b483 (patch) | |
tree | 5c8887ce0504408ed7951aabad5a9adda1f1de58 /wgpu | |
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 'wgpu')
-rw-r--r-- | wgpu/src/geometry.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wgpu/src/geometry.rs b/wgpu/src/geometry.rs index 8e6f77d7..a27cef07 100644 --- a/wgpu/src/geometry.rs +++ b/wgpu/src/geometry.rs @@ -395,6 +395,7 @@ impl geometry::frame::Backend for Frame { } fn paste(&mut self, frame: Frame) { + self.meshes.extend(frame.meshes); self.meshes .extend(frame.buffers.into_meshes(frame.clip_bounds)); |