Skip to content
Open
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
6 changes: 3 additions & 3 deletions imaging/src/painter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ where
record::replay(scene, self.sink);
}

/// Start configuring a fill draw.
/// Start configuring a fill draw. Default field values can be changed in the returned `FillBuilder`.
///
/// Defaults:
/// - geometry transform: [`Affine::IDENTITY`]
Expand Down Expand Up @@ -182,7 +182,7 @@ where
self.sink.fill(FillRef::new(rect, brush));
}

/// Start configuring a stroke draw.
/// Start configuring a stroke draw. Default field values can be changed in the returned `StrokeBuilder`.
///
/// Defaults:
/// - geometry transform: [`Affine::IDENTITY`]
Expand All @@ -200,7 +200,7 @@ where
}
}

/// Start configuring a glyph run.
/// Start configuring a glyph run. Default field values can be changed in the returned `GlyphRunBuilder`.
///
/// Defaults:
/// - run transform: [`Affine::IDENTITY`]
Expand Down
Loading