LibGfx: Rename Path => DeprecatedPath

This commit is contained in:
Andreas Kling
2024-08-08 10:22:03 +02:00
committed by Andreas Kling
parent de50d27870
commit c8f09312f7
61 changed files with 216 additions and 216 deletions

View File

@@ -35,7 +35,7 @@ public:
virtual float glyph_or_emoji_width(Utf8CodePointIterator&) const override;
virtual float glyphs_horizontal_kerning(u32 left_code_point, u32 right_code_point) const override;
virtual u32 glyph_id_for_code_point(u32 code_point) const override { return m_typeface->glyph_id_for_code_point(code_point); }
virtual bool append_glyph_path_to(Gfx::Path&, u32 glyph_id) const override;
virtual bool append_glyph_path_to(Gfx::DeprecatedPath&, u32 glyph_id) const override;
virtual float preferred_line_height() const override { return metrics().height() + metrics().line_gap; }
virtual int x_height() const override { return m_point_height; } // FIXME: Read from font
virtual u8 baseline() const override { return m_point_height; } // FIXME: Read from font