1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27:35 +00:00

LibGfx: Add accessors for BitmapFont's rows and widths

This commit is contained in:
thankyouverycool 2022-03-17 07:50:30 -04:00 committed by Andreas Kling
parent 599b2bee4a
commit 3d1591a822

View file

@ -31,6 +31,9 @@ public:
~BitmapFont();
u8* rows() { return m_rows; }
u8* widths() { return m_glyph_widths; }
u8 presentation_size() const override { return m_presentation_size; }
void set_presentation_size(u8 size) { m_presentation_size = size; }