fix(msaa renderer): fix closing strokes

This commit is contained in:
Jindra Petřík
2026-05-09 09:52:38 +02:00
parent ae9fdf1f93
commit 3d46722d8f

View File

@@ -154,11 +154,11 @@ public class AntialiasTools {
for (int i = 1; i < iPts.length; i++) {
path.lineTo(iPts[i].x / (float) FIXED_ONE, iPts[i].y / (float) FIXED_ONE);
}
if (close) {
path.closePath();
}
}
}
if (close) {
path.closePath();
}
return path;