Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clippy::too_long_first_doc_paragraph lint #696

Merged
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
8 changes: 5 additions & 3 deletions vello_encoding/src/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ impl DrawTag {
}
}

/// The first word of each draw info stream entry contains the flags. This is not part of the
/// draw object stream but gets used after the draw objects get reduced on the GPU.
/// 0 represents a non-zero fill. 1 represents an even-odd fill.
/// The first word of each draw info stream entry contains the flags.
///
/// This is not part of the draw object stream but gets used after the draw
/// objects get reduced on the GPU. `0` represents a non-zero fill.
/// `1` represents an even-odd fill.
pub const DRAW_INFO_FLAGS_FILL_RULE_BIT: u32 = 1;

/// Draw object bounding box.
Expand Down