libui: Clarify that Font is only used for low-level glyph rendering

This commit is contained in:
apio 2023-09-11 19:14:17 +02:00
parent d892e431b3
commit 93427425cb
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -18,7 +18,10 @@
namespace ui namespace ui
{ {
/** /**
* @brief A class holding PSF font data, used for direct rendering of glyphs into a canvas. * @brief A class holding PSF font data, used for low-level direct rendering of glyphs into a canvas.
*
* This class does not handle special characters such as tabs or newlines. For those, you should be using a more
* high-level component such as ui::Label instead.
*/ */
class Font : public Shareable class Font : public Shareable
{ {