summaryrefslogtreecommitdiffstats
path: root/tiny_skia
diff options
context:
space:
mode:
authorLibravatar Vlad-Stefan Harbuz <vlad@vladh.net>2024-06-21 10:41:17 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-09-10 23:44:04 +0200
commitec39390c23cd46a115bb0528abdb2c5527f1272a (patch)
tree104c7209bc2c37cdd332b31d8308237461a22a63 /tiny_skia
parentabd323181d613f1dc69b6cbe885dce556f427de2 (diff)
downloadiced-ec39390c23cd46a115bb0528abdb2c5527f1272a.tar.gz
iced-ec39390c23cd46a115bb0528abdb2c5527f1272a.tar.bz2
iced-ec39390c23cd46a115bb0528abdb2c5527f1272a.zip
Add stroke_rectangle
This method should be able to leverage performance improvements in lyon's `tessellate_rectangle` over `tessellate_path`.
Diffstat (limited to 'tiny_skia')
-rw-r--r--tiny_skia/src/geometry.rs25
1 files changed, 25 insertions, 0 deletions
diff --git a/tiny_skia/src/geometry.rs b/tiny_skia/src/geometry.rs
index 659612d1..532a53cd 100644
--- a/tiny_skia/src/geometry.rs
+++ b/tiny_skia/src/geometry.rs
@@ -168,6 +168,31 @@ impl geometry::frame::Backend for Frame {
});
}
+ fn stroke_rectangle<'a>(
+ &mut self,
+ top_left: Point,
+ size: Size,
+ stroke: impl Into<Stroke<'a>>,
+ ) {
+ let Some(path) = convert_path(&Path::rectangle(top_left, size))
+ .and_then(|path| path.transform(self.transform))
+ else {
+ return;
+ };
+
+ let stroke = stroke.into();
+ let skia_stroke = into_stroke(&stroke);
+
+ let mut paint = into_paint(stroke.style);
+ paint.shader.transform(self.transform);
+
+ self.primitives.push(Primitive::Stroke {
+ path,
+ paint,
+ stroke: skia_stroke,
+ });
+ }
+
fn fill_text(&mut self, text: impl Into<geometry::Text>) {
let text = text.into();