Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 8109b72

Browse files
authored
[Impeller] Make stroke round cap/join smoothing way less aggressive (#36625)
1 parent c2aa65b commit 8109b72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impeller/entity/contents/solid_stroke_contents.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ bool SolidStrokeContents::Render(const ContentContext& renderer,
213213
cmd.stencil_reference = entity.GetStencilDepth();
214214

215215
auto smoothing = SmoothingApproximation(
216-
5.0 / (stroke_size_ * entity.GetTransformation().GetMaxBasisLength()),
216+
60.0 / (stroke_size_ * entity.GetTransformation().GetMaxBasisLength()),
217217
0.0, 0.0);
218218

219219
Scalar min_size = 1.0f / sqrt(std::abs(determinant));

0 commit comments

Comments
 (0)