1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibGfx: Remove single-code point Font::glyph_or_emoji_width API

All callers are now aware of multi-code point emoji (and must remain so
going forward).
This commit is contained in:
Timothy Flynn 2023-02-22 12:43:21 -05:00 committed by Linus Groh
parent 16ec116133
commit 34567bc145
6 changed files with 11 additions and 21 deletions

View file

@ -326,14 +326,6 @@ static float glyph_or_emoji_width_impl(BitmapFont const& font, CodePointIterator
return font.glyph_width(*it);
}
float BitmapFont::glyph_or_emoji_width(u32 code_point) const
{
Utf32View code_point_view { &code_point, 1 };
auto it = code_point_view.begin();
return glyph_or_emoji_width_impl(*this, it);
}
float BitmapFont::glyph_or_emoji_width(Utf8CodePointIterator& it) const
{
return glyph_or_emoji_width_impl(*this, it);