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
parent f3a937ee76
commit 9ce5bbe059

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;