mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
LibGfx: Use east-mutable style in OpenType font class
No intended behavior change.
This commit is contained in:
parent
7ae229ead7
commit
8634820e73
Notes:
sideshowbarker
2024-07-17 10:39:39 +09:00
Author: https://github.com/kalenikaliaksandr Commit: https://github.com/SerenityOS/serenity/commit/8634820e73 Pull-request: https://github.com/SerenityOS/serenity/pull/22224 Reviewed-by: https://github.com/nico Reviewed-by: https://github.com/trflynn89
1 changed files with 3 additions and 3 deletions
|
@ -132,11 +132,11 @@ private:
|
|||
};
|
||||
|
||||
// Fast cache for GlyphPage #0 (code points 0-255) to avoid hash lookups for all of ASCII and Latin-1.
|
||||
mutable OwnPtr<GlyphPage> m_glyph_page_zero;
|
||||
OwnPtr<GlyphPage> mutable m_glyph_page_zero;
|
||||
|
||||
mutable HashMap<size_t, NonnullOwnPtr<GlyphPage>> m_glyph_pages;
|
||||
HashMap<size_t, NonnullOwnPtr<GlyphPage>> mutable m_glyph_pages;
|
||||
|
||||
mutable HashMap<u32, i16> m_kerning_cache;
|
||||
HashMap<u32, i16> mutable m_kerning_cache;
|
||||
|
||||
Optional<String> mutable m_family;
|
||||
Optional<u16> mutable m_width;
|
||||
|
|
Loading…
Reference in a new issue