Update SystemFontResolver to std::filesystem::path
This commit is contained in:
@@ -9,13 +9,17 @@
|
||||
|
||||
namespace OpenVulkano
|
||||
{
|
||||
const std::string& SystemFontResolver::GetSystemFontPath(const std::string& fontName)
|
||||
namespace
|
||||
{
|
||||
static std::string fallbackString;
|
||||
return fallbackString;
|
||||
const std::filesystem::path FALLBACK_PATH;
|
||||
}
|
||||
|
||||
std::map<std::string, std::string> SystemFontResolver::ReadSystemFonts()
|
||||
const std::filesystem::path& SystemFontResolver::GetSystemFontPath(const std::string& fontName)
|
||||
{
|
||||
return FALLBACK_PATH;
|
||||
}
|
||||
|
||||
std::map<std::string, std::filesystem::path> SystemFontResolver::ReadSystemFonts()
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user