We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Failing test case:
use raqote::{DrawOptions, DrawTarget, PathBuilder, SolidSource, Source}; fn main() { let mut draw_target = DrawTarget::new(256, 256); let mut path_builder = PathBuilder::new(); path_builder.move_to(-22015.0, -2901.0); path_builder.quad_to(-32255.0, -3413.0, -33279.0, 172.0); path_builder.close(); let path = path_builder.finish(); draw_target.fill(&path, &Source::Solid(SolidSource { r: 0, g: 0, b: 0, a: 255 }), &DrawOptions::default()); }
The text was updated successfully, but these errors were encountered:
Use saturating arithmetic as we march along an active edge.
156d461
Fixes jrmuizel#107, but I'm not sure this is the best fix.
Successfully merging a pull request may close this issue.
Failing test case:
The text was updated successfully, but these errors were encountered: