Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/anyrender/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ pub trait PaintScene {
font_size: f32,
hint: bool,
normalized_coords: &'a [NormalizedCoord],
embolden: kurbo::Vec2,
style: impl Into<StyleRef<'a>>,
brush: impl Into<PaintRef<'a>>,
brush_alpha: f32,
Expand Down
1 change: 1 addition & 0 deletions crates/anyrender/src/null_backend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ impl PaintScene for NullScenePainter {
_font_size: f32,
_hint: bool,
_normalized_coords: &'a [crate::NormalizedCoord],
_embolden: kurbo::Vec2,
_style: impl Into<peniko::StyleRef<'a>>,
_brush: impl Into<crate::PaintRef<'a>>,
_brush_alpha: f32,
Expand Down
1 change: 1 addition & 0 deletions crates/anyrender_skia/src/scene.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,7 @@ impl PaintScene for SkiaScenePainter<'_> {
font_size: f32,
hint: bool,
normalized_coords: &'a [anyrender::NormalizedCoord],
_embolden: kurbo::Vec2,
style: impl Into<peniko::StyleRef<'a>>,
brush: impl Into<anyrender::PaintRef<'a>>,
brush_alpha: f32,
Expand Down
1 change: 1 addition & 0 deletions crates/anyrender_vello/src/scene.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ impl PaintScene for VelloScenePainter<'_, '_> {
font_size: f32,
hint: bool,
normalized_coords: &'a [NormalizedCoord],
_embolden: kurbo::Vec2,
style: impl Into<StyleRef<'a>>,
paint: impl Into<PaintRef<'a>>,
brush_alpha: f32,
Expand Down
1 change: 1 addition & 0 deletions crates/anyrender_vello_cpu/src/scene.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ impl PaintScene for VelloCpuScenePainter {
font_size: f32,
hint: bool,
normalized_coords: &'a [NormalizedCoord],
_embolden: kurbo::Vec2,
style: impl Into<StyleRef<'a>>,
paint: impl Into<PaintRef<'a>>,
_brush_alpha: f32,
Expand Down
1 change: 1 addition & 0 deletions crates/anyrender_vello_hybrid/src/scene.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ impl PaintScene for VelloHybridScenePainter<'_> {
font_size: f32,
hint: bool,
normalized_coords: &'a [NormalizedCoord],
_embolden: kurbo::Vec2,
style: impl Into<StyleRef<'a>>,
paint: impl Into<PaintRef<'a>>,
_brush_alpha: f32,
Expand Down