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

LibGfx: Rename FontMetrics => FontPixelMetrics

Let's make it clear in the type name that this contains pixel metrics.
Also rename Font::metrics() => Font::pixel_metrics().
This commit is contained in:
Andreas Kling 2022-03-28 12:03:44 +02:00
parent 0f6dd8c62b
commit 344374588b
9 changed files with 24 additions and 24 deletions

View file

@ -16,7 +16,7 @@ class Emoji;
class Font;
class GlyphBitmap;
class ImageDecoder;
struct FontMetrics;
struct FontPixelMetrics;
template<typename T>
class Line;