1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +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

@ -5,6 +5,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Utf8View.h>
#include <LibGfx/Font/BitmapFont.h>
#include <LibGfx/Font/FontDatabase.h>
#include <LibTest/TestCase.h>
@ -125,7 +126,10 @@ TEST_CASE(test_glyph_or_emoji_width)
u8 glyph_width = 1;
auto font = Gfx::BitmapFont::create(glyph_height, glyph_width, true, 256);
EXPECT(font->glyph_or_emoji_width(0));
Utf8View view { " "sv };
auto it = view.begin();
EXPECT(font->glyph_or_emoji_width(it));
}
TEST_CASE(test_load_from_file)