I recently upgraded to a new skia version provided by vcpkg and I found that SkFontMgr::RefDefault() was removed
instead there is SkFontMgr::RefEmpty() which as the name implies has no fonts at all!
I suspect this is the cause the text layout is always empty
I tried to load fonts using TypefaceFontProvider but its onMakeFromData() and onMakeFromFile() are stubbed and returning nullptr
How should I load fonts ?
And is there still a method to load the system fonts like was before or I have to implement all of this myself?