Hi Team, We merged Blink's patch to have 'rotateRadians' rather than multiple conversions, we can use it here as well: https://searchfox.org/wubkat/source/Source/WebCore/html/canvas/CanvasRenderingContext2DBase.cpp#784 ^ From 'newTransform.rotate(angleInRadians / piDouble * 180.0);' to 'newTransform.rotateRadians(angleInRadians);' https://searchfox.org/wubkat/source/Source/WebCore/html/canvas/CanvasRenderingContext2DBase.cpp#792 ^ From 'm_path.transform(AffineTransform().rotate(-angleInRadians / piDouble * 180.0));' to 'm_path.transform(AffineTransform().rotateRadians(-angleInRadians));' It is just to use the function more and more. Thanks!
Committed 270994@main (1df0b1914071): <https://commits.webkit.org/270994@main> Reviewed commits have been landed. Closing PR #20754 and removing active labels.
<rdar://problem/118666924>