LibGfx: Move FontDatabase internals to SystemFontProvider interface

This will be the first step is making better use of system libraries
like fontconfig and CoreText to load system fonts for use by the UI
process and the CSS style computer.
This commit is contained in:
Andrew Kaster 2024-10-11 18:17:07 -06:00 committed by Andrew Kaster
commit 36a8ad9157
Notes: github-actions[bot] 2024-10-15 21:10:07 +00:00
11 changed files with 174 additions and 89 deletions

View file

@ -19,6 +19,7 @@
#include <LibGfx/Font/Font.h>
#include <LibGfx/Font/FontDatabase.h>
#include <LibGfx/Font/FontStyleMapping.h>
#include <LibGfx/Font/FontWeight.h>
#include <LibGfx/Font/ScaledFont.h>
#include <LibGfx/Font/Typeface.h>
#include <LibGfx/Font/WOFF/Loader.h>