LibGfx: Remove Font::pixel_size_rounded_up()

The remaining callsites were removed in the previous commit.
This commit is contained in:
Jelle Raaijmakers 2025-07-15 13:42:19 +02:00 committed by Sam Atkins
commit 144eac44fb
Notes: github-actions[bot] 2025-07-15 18:06:46 +00:00
2 changed files with 0 additions and 8 deletions

View file

@ -58,7 +58,6 @@ public:
float point_size() const;
float pixel_size() const;
int pixel_size_rounded_up() const;
FontPixelMetrics const& pixel_metrics() const { return m_pixel_metrics; }
u8 slope() const { return m_typeface->slope(); }
u16 weight() const { return m_typeface->weight(); }
@ -94,7 +93,6 @@ private:
FontPixelMetrics m_pixel_metrics;
float m_pixel_size { 0.0f };
int m_pixel_size_rounded_up { 0 };
};
}