mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-25 18:58:56 +00:00
LibGfx: Add accessors for BitmapFont's rows and widths
This commit is contained in:
parent
599b2bee4a
commit
3d1591a822
Notes:
sideshowbarker
2024-07-17 17:14:18 +09:00
Author: https://github.com/thankyouverycool
Commit: 3d1591a822
Pull-request: https://github.com/SerenityOS/serenity/pull/13089
1 changed files with 3 additions and 0 deletions
|
@ -31,6 +31,9 @@ public:
|
||||||
|
|
||||||
~BitmapFont();
|
~BitmapFont();
|
||||||
|
|
||||||
|
u8* rows() { return m_rows; }
|
||||||
|
u8* widths() { return m_glyph_widths; }
|
||||||
|
|
||||||
u8 presentation_size() const override { return m_presentation_size; }
|
u8 presentation_size() const override { return m_presentation_size; }
|
||||||
void set_presentation_size(u8 size) { m_presentation_size = size; }
|
void set_presentation_size(u8 size) { m_presentation_size = size; }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue