Details
-
Task
-
Resolution: Fixed
-
P4: Low
-
None
-
3
-
32c8d7f9d (dev)
-
Foundation Sprint 127, Foundation Sprint 128, Foundation Sprint 129
Description
QQuickPathRectangle currently stores corner radius and bevel flags separately, using a bitfield for isCornerRadiusSet and std::optional<bool> for cornerBevel, causing unnecessary memory overhead. Instead, use a single bitset to store both flags.