blob: ed2bab02b4b1d40d9fbb19bd7a25de218b64364f [file] [log] [blame]
// Copyright 2014 The Chromium 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 "config.h"
#include "public/web/win/WebFontRendering.h"
#include "platform/fonts/FontCache.h"
namespace blink {
// static
void WebFontRendering::setUseDirectWrite(bool useDirectWrite)
{
blink::FontCache::setUseDirectWrite(useDirectWrite);
}
// static
void WebFontRendering::setDirectWriteFactory(IDWriteFactory* factory)
{
blink::FontCache::setDirectWriteFactory(factory);
}
// static
void WebFontRendering::setUseSubpixelPositioning(bool useSubpixelPositioning)
{
blink::FontCache::setUseSubpixelPositioning(useSubpixelPositioning);
}
// static
void WebFontRendering::addSideloadedFontForTesting(SkTypeface* typeface)
{
blink::FontCache::addSideloadedFontForTesting(typeface);
}
} // namespace blink