check point count before tessellating bezier (#2506)

This commit is contained in:
lictex_ 2023-01-23 19:20:05 +08:00 committed by GitHub
parent f87c6cbd7c
commit 01bbda4544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1507,6 +1507,10 @@ impl Tessellator {
stroke: Stroke,
out: &mut Mesh,
) {
if points.len() < 2 {
return;
}
self.scratchpad_path.clear();
if closed {
self.scratchpad_path.add_line_loop(points);