LibWeb: Remove CubicBezier cached sample inline cache

This reduces the size of CubicBezier objects from 1592 bytes to 56
bytes.
This commit is contained in:
Tim Ledbetter 2025-03-24 17:05:30 +00:00 committed by Andreas Kling
commit 9ce5bbe059
Notes: github-actions[bot] 2025-03-25 07:52:43 +00:00

View file

@ -57,7 +57,7 @@ public:
double t;
};
mutable Vector<CachedSample, 64> m_cached_x_samples {};
mutable Vector<CachedSample> m_cached_x_samples {};
bool operator==(CubicBezier const&) const;