summaryrefslogtreecommitdiffstats
path: root/renderer
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-03 13:25:58 +0200
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-05-03 13:25:58 +0200
commitfa9e1d96ea1924b51749b775ea0e67e69bc8a305 (patch)
tree20cb13d6e3074569a15a16c8b0d261b1875a2045 /renderer
parent38cf87cb45484c7e52ddf775fb3abd7edbecc652 (diff)
downloadiced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.gz
iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.bz2
iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.zip
Introduce dynamic `opacity` support for `Image` and `Svg`
Diffstat (limited to 'renderer')
-rw-r--r--renderer/src/fallback.rs12
1 files changed, 10 insertions, 2 deletions
diff --git a/renderer/src/fallback.rs b/renderer/src/fallback.rs
index a077031b..6a169692 100644
--- a/renderer/src/fallback.rs
+++ b/renderer/src/fallback.rs
@@ -155,11 +155,18 @@ where
filter_method: image::FilterMethod,
bounds: Rectangle,
rotation: Radians,
+ opacity: f32,
) {
delegate!(
self,
renderer,
- renderer.draw_image(handle, filter_method, bounds, rotation)
+ renderer.draw_image(
+ handle,
+ filter_method,
+ bounds,
+ rotation,
+ opacity
+ )
);
}
}
@@ -179,11 +186,12 @@ where
color: Option<Color>,
bounds: Rectangle,
rotation: Radians,
+ opacity: f32,
) {
delegate!(
self,
renderer,
- renderer.draw_svg(handle, color, bounds, rotation)
+ renderer.draw_svg(handle, color, bounds, rotation, opacity)
);
}
}