blob: 8f5f51546fa8bced00c821b686f9c276cde397a4 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "third_party/skia/include/ports/SkTypeface_win.h"
#include "txt/platform.h"
namespace txt {
std::vector<std::string> GetDefaultFontFamilies() {
return {"Segoe UI", "Arial"};
}
sk_sp<SkFontMgr> GetDefaultFontManager(uint32_t font_initialization_data) {
return SkFontMgr_New_DirectWrite();
}
} // namespace txt