fontmgr_default_win.cc 449 B

12345678910111213141516
  1. // Copyright 2014 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "skia/ext/fontmgr_default.h"
  5. #include "third_party/skia/include/core/SkFontMgr.h"
  6. #include "third_party/skia/include/ports/SkTypeface_win.h"
  7. namespace skia {
  8. SK_API sk_sp<SkFontMgr> CreateDefaultSkFontMgr() {
  9. return SkFontMgr_New_DirectWrite();
  10. }
  11. } // namespace skia