Move font API to GpCommon

This commit is contained in:
elasota
2020-09-12 14:01:51 -04:00
parent f07137b52d
commit 987a1dea75
43 changed files with 189 additions and 190 deletions

View File

@@ -2,15 +2,15 @@
namespace PortabilityLayer
{
void HostFontHandler::SetInstance(HostFontHandler *instance)
void HostFontHandler::SetInstance(IGpFontHandler *instance)
{
ms_instance = instance;
}
HostFontHandler *HostFontHandler::GetInstance()
IGpFontHandler *HostFontHandler::GetInstance()
{
return ms_instance;
}
HostFontHandler *HostFontHandler::ms_instance = nullptr;
IGpFontHandler *HostFontHandler::ms_instance = nullptr;
}