check point count before tessellating bezier (#2506)
This commit is contained in:
parent
f87c6cbd7c
commit
01bbda4544
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue