summaryrefslogtreecommitdiffstats
path: root/core/src
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 /core/src
parent38cf87cb45484c7e52ddf775fb3abd7edbecc652 (diff)
downloadiced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.gz
iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.tar.bz2
iced-fa9e1d96ea1924b51749b775ea0e67e69bc8a305.zip
Introduce dynamic `opacity` support for `Image` and `Svg`
Diffstat (limited to 'core/src')
-rw-r--r--core/src/image.rs1
-rw-r--r--core/src/renderer/null.rs2
-rw-r--r--core/src/svg.rs1
3 files changed, 4 insertions, 0 deletions
diff --git a/core/src/image.rs b/core/src/image.rs
index 91a7fd36..82ecdd0f 100644
--- a/core/src/image.rs
+++ b/core/src/image.rs
@@ -174,5 +174,6 @@ pub trait Renderer: crate::Renderer {
filter_method: FilterMethod,
bounds: Rectangle,
rotation: Radians,
+ opacity: f32,
);
}
diff --git a/core/src/renderer/null.rs b/core/src/renderer/null.rs
index 91519b40..e8709dbc 100644
--- a/core/src/renderer/null.rs
+++ b/core/src/renderer/null.rs
@@ -173,6 +173,7 @@ impl image::Renderer for () {
_filter_method: image::FilterMethod,
_bounds: Rectangle,
_rotation: Radians,
+ _opacity: f32,
) {
}
}
@@ -188,6 +189,7 @@ impl svg::Renderer for () {
_color: Option<Color>,
_bounds: Rectangle,
_rotation: Radians,
+ _opacity: f32,
) {
}
}
diff --git a/core/src/svg.rs b/core/src/svg.rs
index 01f102e3..946b8156 100644
--- a/core/src/svg.rs
+++ b/core/src/svg.rs
@@ -101,5 +101,6 @@ pub trait Renderer: crate::Renderer {
color: Option<Color>,
bounds: Rectangle,
rotation: Radians,
+ opacity: f32,
);
}