summaryrefslogtreecommitdiffstats
path: root/winit
diff options
context:
space:
mode:
authorLibravatar Ian Douglas Scott <idscott@system76.com>2024-11-21 16:26:17 -0800
committerLibravatar Ian Douglas Scott <idscott@system76.com>2024-11-21 16:26:17 -0800
commit3fc57b7d95f2cd1d8c7bef06547c55195d4e032a (patch)
treeb65138fc4913efa5c30f09e853fcfc0b2477e93f /winit
parent2a2e20b0a35bcf4da9ac34ab2f664485c4e1dbe3 (diff)
downloadiced-3fc57b7d95f2cd1d8c7bef06547c55195d4e032a.tar.gz
iced-3fc57b7d95f2cd1d8c7bef06547c55195d4e032a.tar.bz2
iced-3fc57b7d95f2cd1d8c7bef06547c55195d4e032a.zip
Remove `surface` argument of `Compositor::screenshot`
This argument was completely ignored by the wgpu renderer, and used only for the `clip_mask` by the `tiny_skia` renderer. I believe creating a new clip mask is correct. This way it's possible to render offscreen without needing a surface.
Diffstat (limited to 'winit')
-rw-r--r--winit/src/program.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/winit/src/program.rs b/winit/src/program.rs
index 130bf220..13873edd 100644
--- a/winit/src/program.rs
+++ b/winit/src/program.rs
@@ -1456,7 +1456,6 @@ fn run_action<P, C>(
if let Some(window) = window_manager.get_mut(id) {
let bytes = compositor.screenshot(
&mut window.renderer,
- &mut window.surface,
window.state.viewport(),
window.state.background_color(),
&debug.overlay(),