1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:27:36 +00:00

LibGfx: Remove unnecessary path members from AntiAliasingPainter

m_rotated_rectangle_path was unused and m_intersection_edge_path was
cleared/free'd each time it was used. So sticking in the class just
bloats the size.
This commit is contained in:
MacDue 2022-11-29 23:51:52 +00:00 committed by Andreas Kling
parent 2b7aa4a971
commit 754b8a643d
2 changed files with 9 additions and 13 deletions

View file

@ -88,8 +88,6 @@ private:
Painter& m_underlying_painter;
AffineTransform m_transform;
Path m_intersection_edge_path;
Path m_rotated_rectangle_path;
};
}