This source file includes following definitions.
- setHinting
- setAutoHint
- setUseBitmaps
- setAntiAlias
- setSubpixelRendering
- m_isHashTableDeletedValue
- m_minSizeForAntiAlias
- m_minSizeForAntiAlias
- m_minSizeForAntiAlias
- m_isHashTableDeletedValue
- m_minSizeForAntiAlias
- description
- setupPaint
- uniqueID
- fontFamilyName
- isFixedPitch
- harfBuzzFace
- getRenderStyleForStrike
- querySystemForRenderStyle
- defaultUseSubpixelPositioning
#include "config.h"
#include "platform/fonts/harfbuzz/FontPlatformDataHarfBuzz.h"
#include "RuntimeEnabledFeatures.h"
#include "SkTypeface.h"
#include "platform/LayoutTestSupport.h"
#include "platform/NotImplemented.h"
#include "platform/fonts/FontCache.h"
#include "platform/fonts/harfbuzz/HarfBuzzFace.h"
#include "public/platform/linux/WebFontInfo.h"
#include "public/platform/linux/WebFontRenderStyle.h"
#include "public/platform/linux/WebSandboxSupport.h"
#include "public/platform/Platform.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
static SkPaint::Hinting skiaHinting = SkPaint::kNormal_Hinting;
static bool useSkiaAutoHint = true;
static bool useSkiaBitmaps = true;
static bool useSkiaAntiAlias = true;
static bool useSkiaSubpixelRendering = false;
void FontPlatformData::setHinting(SkPaint::Hinting hinting)
{
skiaHinting = hinting;
}
void FontPlatformData::setAutoHint(bool useAutoHint)
{
useSkiaAutoHint = useAutoHint;
}
void FontPlatformData::setUseBitmaps(bool useBitmaps)
{
useSkiaBitmaps = useBitmaps;
}
void FontPlatformData::setAntiAlias(bool useAntiAlias)
{
useSkiaAntiAlias = useAntiAlias;
}
void FontPlatformData::setSubpixelRendering(bool useSubpixelRendering)
{
useSkiaSubpixelRendering = useSubpixelRendering;
}
FontPlatformData::FontPlatformData(WTF::HashTableDeletedValueType)
: m_textSize(0)
, m_syntheticBold(false)
, m_syntheticItalic(false)
, m_orientation(Horizontal)
, m_isHashTableDeletedValue(true)
{
}
FontPlatformData::FontPlatformData()
: m_textSize(0)
, m_syntheticBold(false)
, m_syntheticItalic(false)
, m_orientation(Horizontal)
, m_isHashTableDeletedValue(false)
#if OS(WIN)
, m_minSizeForAntiAlias(0)
#endif
{
}
FontPlatformData::FontPlatformData(float textSize, bool syntheticBold, bool syntheticItalic)
: m_textSize(textSize)
, m_syntheticBold(syntheticBold)
, m_syntheticItalic(syntheticItalic)
, m_orientation(Horizontal)
, m_isHashTableDeletedValue(false)
#if OS(WIN)
, m_minSizeForAntiAlias(0)
#endif
{
}
FontPlatformData::FontPlatformData(const FontPlatformData& src)
: m_typeface(src.m_typeface)
, m_family(src.m_family)
, m_textSize(src.m_textSize)
, m_syntheticBold(src.m_syntheticBold)
, m_syntheticItalic(src.m_syntheticItalic)
, m_orientation(src.m_orientation)
, m_style(src.m_style)
, m_harfBuzzFace(nullptr)
, m_isHashTableDeletedValue(false)
#if OS(WIN)
, m_minSizeForAntiAlias(0)
#endif
{
}
FontPlatformData::FontPlatformData(PassRefPtr<SkTypeface> tf, const char* family, float textSize, bool syntheticBold, bool syntheticItalic, FontOrientation orientation, bool subpixelTextPosition)
: m_typeface(tf)
, m_family(family)
, m_textSize(textSize)
, m_syntheticBold(syntheticBold)
, m_syntheticItalic(syntheticItalic)
, m_orientation(orientation)
, m_isHashTableDeletedValue(false)
{
querySystemForRenderStyle(subpixelTextPosition);
}
FontPlatformData::FontPlatformData(const FontPlatformData& src, float textSize)
: m_typeface(src.m_typeface)
, m_family(src.m_family)
, m_textSize(textSize)
, m_syntheticBold(src.m_syntheticBold)
, m_syntheticItalic(src.m_syntheticItalic)
, m_orientation(src.m_orientation)
, m_harfBuzzFace(nullptr)
, m_isHashTableDeletedValue(false)
#if OS(WIN)
, m_minSizeForAntiAlias(0)
#endif
{
querySystemForRenderStyle(FontDescription::subpixelPositioning());
}
FontPlatformData::~FontPlatformData()
{
}
FontPlatformData& FontPlatformData::operator=(const FontPlatformData& src)
{
m_typeface = src.m_typeface;
m_family = src.m_family;
m_textSize = src.m_textSize;
m_syntheticBold = src.m_syntheticBold;
m_syntheticItalic = src.m_syntheticItalic;
m_harfBuzzFace = nullptr;
m_orientation = src.m_orientation;
m_style = src.m_style;
#if OS(WIN)
m_minSizeForAntiAlias = src.m_minSizeForAntiAlias;
#endif
return *this;
}
#ifndef NDEBUG
String FontPlatformData::description() const
{
return String();
}
#endif
void FontPlatformData::setupPaint(SkPaint* paint, GraphicsContext*) const
{
paint->setAntiAlias(m_style.useAntiAlias);
paint->setHinting(static_cast<SkPaint::Hinting>(m_style.hintStyle));
paint->setEmbeddedBitmapText(m_style.useBitmaps);
paint->setAutohinted(m_style.useAutoHint);
if (m_style.useAntiAlias)
paint->setLCDRenderText(m_style.useSubpixelRendering);
if (RuntimeEnabledFeatures::subpixelFontScalingEnabled() && !isRunningLayoutTest())
paint->setSubpixelText(true);
else
paint->setSubpixelText(m_style.useSubpixelPositioning);
const float ts = m_textSize >= 0 ? m_textSize : 12;
paint->setTextSize(SkFloatToScalar(ts));
paint->setTypeface(m_typeface.get());
paint->setFakeBoldText(m_syntheticBold);
paint->setTextSkewX(m_syntheticItalic ? -SK_Scalar1 / 4 : 0);
}
SkFontID FontPlatformData::uniqueID() const
{
return m_typeface->uniqueID();
}
String FontPlatformData::fontFamilyName() const
{
if (!this->typeface())
return "";
SkTypeface::LocalizedStrings* fontFamilyIterator = this->typeface()->createFamilyNameIterator();
SkTypeface::LocalizedString localizedString;
while (fontFamilyIterator->next(&localizedString) && !localizedString.fString.size()) { }
fontFamilyIterator->unref();
return String(localizedString.fString.c_str());
}
bool FontPlatformData::operator==(const FontPlatformData& a) const
{
bool typefacesEqual;
if (!m_typeface || !a.m_typeface)
typefacesEqual = m_typeface == a.m_typeface;
else
typefacesEqual = SkTypeface::Equal(m_typeface.get(), a.m_typeface.get());
return typefacesEqual
&& m_textSize == a.m_textSize
&& m_syntheticBold == a.m_syntheticBold
&& m_syntheticItalic == a.m_syntheticItalic
&& m_orientation == a.m_orientation
&& m_style == a.m_style
&& m_isHashTableDeletedValue == a.m_isHashTableDeletedValue;
}
bool FontPlatformData::isFixedPitch() const
{
return typeface() && typeface()->isFixedPitch();
}
HarfBuzzFace* FontPlatformData::harfBuzzFace() const
{
if (!m_harfBuzzFace)
m_harfBuzzFace = HarfBuzzFace::create(const_cast<FontPlatformData*>(this), uniqueID());
return m_harfBuzzFace.get();
}
void FontPlatformData::getRenderStyleForStrike(const char* font, int sizeAndStyle)
{
blink::WebFontRenderStyle style;
#if OS(ANDROID)
style.setDefaults();
#else
if (!font || !*font)
style.setDefaults();
else if (blink::Platform::current()->sandboxSupport())
blink::Platform::current()->sandboxSupport()->getRenderStyleForStrike(font, sizeAndStyle, &style);
else
blink::WebFontInfo::renderStyleForStrike(font, sizeAndStyle, &style);
#endif
style.toFontRenderStyle(&m_style);
}
void FontPlatformData::querySystemForRenderStyle(bool useSkiaSubpixelPositioning)
{
getRenderStyleForStrike(m_family.data(), (((int)m_textSize) << 2) | (m_typeface->style() & 3));
if (m_style.useAntiAlias == FontRenderStyle::NoPreference)
m_style.useAntiAlias = useSkiaAntiAlias;
if (!m_style.useHinting)
m_style.hintStyle = SkPaint::kNo_Hinting;
else if (m_style.useHinting == FontRenderStyle::NoPreference)
m_style.hintStyle = skiaHinting;
if (m_style.useBitmaps == FontRenderStyle::NoPreference)
m_style.useBitmaps = useSkiaBitmaps;
if (m_style.useAutoHint == FontRenderStyle::NoPreference)
m_style.useAutoHint = useSkiaAutoHint;
if (m_style.useAntiAlias == FontRenderStyle::NoPreference)
m_style.useAntiAlias = useSkiaAntiAlias;
if (m_style.useSubpixelRendering == FontRenderStyle::NoPreference)
m_style.useSubpixelRendering = useSkiaSubpixelRendering;
if (m_style.useSubpixelPositioning == FontRenderStyle::NoPreference
|| isRunningLayoutTest())
m_style.useSubpixelPositioning = useSkiaSubpixelPositioning;
}
bool FontPlatformData::defaultUseSubpixelPositioning()
{
return FontDescription::subpixelPositioning();
}
}