2008-08-06 13:48:55 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2012-06-27 17:15:32 -07:00
|
|
|
#if defined(MOZ_WIDGET_GTK)
|
2008-08-06 13:48:55 -07:00
|
|
|
#include "gfxPlatformGtk.h"
|
2008-08-28 04:05:53 -07:00
|
|
|
#define gfxToolkitPlatform gfxPlatformGtk
|
|
|
|
#elif defined(MOZ_WIDGET_QT)
|
|
|
|
#include <qfontinfo.h>
|
2010-03-04 13:51:42 -08:00
|
|
|
#include "gfxQtPlatform.h"
|
2008-08-28 04:05:53 -07:00
|
|
|
#define gfxToolkitPlatform gfxQtPlatform
|
2009-01-22 22:24:29 -08:00
|
|
|
#elif defined(XP_WIN)
|
|
|
|
#include "gfxWindowsPlatform.h"
|
|
|
|
#define gfxToolkitPlatform gfxWindowsPlatform
|
2010-05-11 10:27:36 -07:00
|
|
|
#elif defined(ANDROID)
|
|
|
|
#include "gfxAndroidPlatform.h"
|
|
|
|
#define gfxToolkitPlatform gfxAndroidPlatform
|
2008-08-28 04:05:53 -07:00
|
|
|
#endif
|
2010-05-11 10:27:36 -07:00
|
|
|
|
2008-08-06 13:48:55 -07:00
|
|
|
#include "gfxTypes.h"
|
|
|
|
#include "gfxFT2Fonts.h"
|
2009-10-30 16:13:41 -07:00
|
|
|
#include "gfxFT2FontBase.h"
|
|
|
|
#include "gfxFT2Utils.h"
|
2011-09-23 04:15:36 -07:00
|
|
|
#include "gfxFT2FontList.h"
|
2008-08-06 13:48:55 -07:00
|
|
|
#include <locale.h>
|
2012-03-29 14:08:43 -07:00
|
|
|
#include "nsGkAtoms.h"
|
2009-01-18 12:14:14 -08:00
|
|
|
#include "nsTArray.h"
|
2009-09-09 08:35:08 -07:00
|
|
|
#include "nsUnicodeRange.h"
|
|
|
|
#include "nsCRT.h"
|
2012-02-08 14:52:57 -08:00
|
|
|
#include "nsXULAppAPI.h"
|
2009-09-09 08:35:08 -07:00
|
|
|
|
|
|
|
#include "prlog.h"
|
|
|
|
#include "prinit.h"
|
2011-06-11 19:30:16 -07:00
|
|
|
|
2013-06-23 05:03:39 -07:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2011-06-11 19:30:16 -07:00
|
|
|
#include "mozilla/Preferences.h"
|
2013-06-05 10:48:59 -07:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2011-06-11 19:30:16 -07:00
|
|
|
|
2010-12-09 03:57:23 -08:00
|
|
|
/**
|
|
|
|
* gfxFT2Font
|
|
|
|
*/
|
2009-09-10 13:52:40 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2014-05-31 00:12:40 -07:00
|
|
|
gfxFT2Font::ShapeText(gfxContext *aContext,
|
2014-01-04 07:02:17 -08:00
|
|
|
const char16_t *aText,
|
2014-05-31 00:12:40 -07:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
|
|
|
int32_t aScript,
|
|
|
|
gfxShapedText *aShapedText)
|
2010-12-09 03:57:23 -08:00
|
|
|
{
|
2014-05-31 00:12:40 -07:00
|
|
|
if (!gfxFont::ShapeText(aContext, aText, aOffset, aLength, aScript,
|
|
|
|
aShapedText)) {
|
|
|
|
// harfbuzz must have failed(?!), just render raw glyphs
|
2013-01-04 10:35:37 -08:00
|
|
|
AddRange(aText, aOffset, aLength, aShapedText);
|
2014-05-31 00:12:40 -07:00
|
|
|
PostShapingFixup(aContext, aText, aOffset, aLength, aShapedText);
|
2010-12-09 03:58:16 -08:00
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2008-08-06 13:48:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-04 07:02:17 -08:00
|
|
|
gfxFT2Font::AddRange(const char16_t *aText, uint32_t aOffset,
|
2013-01-04 10:35:37 -08:00
|
|
|
uint32_t aLength, gfxShapedText *aShapedText)
|
2008-08-06 13:48:55 -07:00
|
|
|
{
|
2013-01-04 10:35:37 -08:00
|
|
|
const uint32_t appUnitsPerDevUnit = aShapedText->GetAppUnitsPerDevUnit();
|
2008-08-06 13:48:55 -07:00
|
|
|
// we'll pass this in/figure it out dynamically, but at this point there can be only one face.
|
2010-12-09 03:57:23 -08:00
|
|
|
gfxFT2LockedFace faceLock(this);
|
2009-10-30 16:13:41 -07:00
|
|
|
FT_Face face = faceLock.get();
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2013-01-04 10:35:37 -08:00
|
|
|
gfxShapedText::CompressedGlyph *charGlyphs =
|
|
|
|
aShapedText->GetCharacterGlyphs();
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
const gfxFT2Font::CachedGlyphData *cgd = nullptr, *cgdNext = nullptr;
|
2009-09-10 13:52:40 -07:00
|
|
|
|
2010-12-09 03:57:23 -08:00
|
|
|
FT_UInt spaceGlyph = GetSpaceGlyph();
|
2009-09-10 13:52:40 -07:00
|
|
|
|
2013-01-04 10:35:37 -08:00
|
|
|
for (uint32_t i = 0; i < aLength; i++, aOffset++) {
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t ch = aText[i];
|
2008-08-06 13:48:55 -07:00
|
|
|
|
|
|
|
if (ch == 0) {
|
|
|
|
// treat this null byte as a missing glyph, don't create a glyph for it
|
2013-01-04 10:35:37 -08:00
|
|
|
aShapedText->SetMissingGlyph(aOffset, 0, this);
|
2008-08-06 13:48:55 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-12-09 03:57:23 -08:00
|
|
|
NS_ASSERTION(!gfxFontGroup::IsInvalidChar(ch), "Invalid char detected");
|
2009-09-10 13:52:40 -07:00
|
|
|
|
|
|
|
if (cgdNext) {
|
|
|
|
cgd = cgdNext;
|
2012-07-30 07:20:58 -07:00
|
|
|
cgdNext = nullptr;
|
2009-09-10 13:52:40 -07:00
|
|
|
} else {
|
2010-12-09 03:57:23 -08:00
|
|
|
cgd = GetGlyphDataForChar(ch);
|
2009-09-10 13:52:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
FT_UInt gid = cgd->glyphIndex;
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t advance = 0;
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2009-09-10 13:52:40 -07:00
|
|
|
if (gid == 0) {
|
2008-08-06 13:48:55 -07:00
|
|
|
advance = -1; // trigger the missing glyphs case below
|
|
|
|
} else {
|
|
|
|
// find next character and its glyph -- in case they exist
|
|
|
|
// and exist in the current font face -- to compute kerning
|
2014-01-04 07:02:17 -08:00
|
|
|
char16_t chNext = 0;
|
2008-08-06 13:48:55 -07:00
|
|
|
FT_UInt gidNext = 0;
|
|
|
|
FT_Pos lsbDeltaNext = 0;
|
|
|
|
|
2013-01-04 10:35:37 -08:00
|
|
|
if (FT_HAS_KERNING(face) && i + 1 < aLength) {
|
|
|
|
chNext = aText[i + 1];
|
2008-08-06 13:48:55 -07:00
|
|
|
if (chNext != 0) {
|
2010-12-09 03:57:23 -08:00
|
|
|
cgdNext = GetGlyphDataForChar(chNext);
|
2009-09-10 13:52:40 -07:00
|
|
|
gidNext = cgdNext->glyphIndex;
|
|
|
|
if (gidNext && gidNext != spaceGlyph)
|
|
|
|
lsbDeltaNext = cgdNext->lsbDelta;
|
2008-08-06 13:48:55 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-10 13:52:40 -07:00
|
|
|
advance = cgd->xAdvance;
|
2008-08-06 13:48:55 -07:00
|
|
|
|
|
|
|
// now add kerning to the current glyph's advance
|
|
|
|
if (chNext && gidNext) {
|
|
|
|
FT_Vector kerning; kerning.x = 0;
|
|
|
|
FT_Get_Kerning(face, gid, gidNext, FT_KERNING_DEFAULT, &kerning);
|
|
|
|
advance += kerning.x;
|
2009-09-10 13:52:40 -07:00
|
|
|
if (cgd->rsbDelta - lsbDeltaNext >= 32) {
|
2008-08-06 13:48:55 -07:00
|
|
|
advance -= 64;
|
2009-09-10 13:52:40 -07:00
|
|
|
} else if (cgd->rsbDelta - lsbDeltaNext < -32) {
|
2008-08-06 13:48:55 -07:00
|
|
|
advance += 64;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-09 12:18:17 -08:00
|
|
|
// convert 26.6 fixed point to app units
|
|
|
|
// round rather than truncate to nearest pixel
|
|
|
|
// because these advances are often scaled
|
|
|
|
advance = ((advance * appUnitsPerDevUnit + 32) >> 6);
|
2008-08-06 13:48:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (advance >= 0 &&
|
2013-01-04 10:35:37 -08:00
|
|
|
gfxShapedText::CompressedGlyph::IsSimpleAdvance(advance) &&
|
|
|
|
gfxShapedText::CompressedGlyph::IsSimpleGlyphID(gid)) {
|
|
|
|
charGlyphs[aOffset].SetSimpleGlyph(advance, gid);
|
2008-08-06 13:48:55 -07:00
|
|
|
} else if (gid == 0) {
|
|
|
|
// gid = 0 only happens when the glyph is missing from the font
|
2013-01-04 10:35:37 -08:00
|
|
|
aShapedText->SetMissingGlyph(aOffset, ch, this);
|
2008-08-06 13:48:55 -07:00
|
|
|
} else {
|
|
|
|
gfxTextRun::DetailedGlyph details;
|
|
|
|
details.mGlyphID = gid;
|
2013-01-04 10:35:37 -08:00
|
|
|
NS_ASSERTION(details.mGlyphID == gid,
|
|
|
|
"Seriously weird glyph ID detected!");
|
2008-08-06 13:48:55 -07:00
|
|
|
details.mAdvance = advance;
|
|
|
|
details.mXOffset = 0;
|
|
|
|
details.mYOffset = 0;
|
2013-01-04 10:35:37 -08:00
|
|
|
gfxShapedText::CompressedGlyph g;
|
|
|
|
g.SetComplex(charGlyphs[aOffset].IsClusterStart(), true, 1);
|
|
|
|
aShapedText->SetGlyphs(aOffset, g, &details);
|
2008-08-06 13:48:55 -07:00
|
|
|
}
|
|
|
|
}
|
2009-09-10 13:52:40 -07:00
|
|
|
}
|
2008-08-06 13:48:55 -07:00
|
|
|
|
2009-10-30 16:13:41 -07:00
|
|
|
gfxFT2Font::gfxFT2Font(cairo_scaled_font_t *aCairoFont,
|
2011-09-23 04:16:13 -07:00
|
|
|
FT2FontEntry *aFontEntry,
|
2011-07-26 07:04:55 -07:00
|
|
|
const gfxFontStyle *aFontStyle,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aNeedsBold)
|
2009-10-30 16:13:41 -07:00
|
|
|
: gfxFT2FontBase(aCairoFont, aFontEntry, aFontStyle)
|
2013-09-02 01:41:57 -07:00
|
|
|
, mCharGlyphCache(64)
|
2008-08-06 13:48:55 -07:00
|
|
|
{
|
2008-08-28 04:05:53 -07:00
|
|
|
NS_ASSERTION(mFontEntry, "Unable to find font entry for font. Something is whack.");
|
2011-09-02 13:18:25 -07:00
|
|
|
mApplySyntheticBold = aNeedsBold;
|
2008-08-06 13:48:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
gfxFT2Font::~gfxFT2Font()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-01-22 22:24:29 -08:00
|
|
|
/**
|
|
|
|
* Look up the font in the gfxFont cache. If we don't find it, create one.
|
|
|
|
* In either case, add a ref, append it to the aFonts array, and return it ---
|
|
|
|
* except for OOM in which case we do nothing and return null.
|
|
|
|
*/
|
|
|
|
already_AddRefed<gfxFT2Font>
|
2011-09-23 04:15:36 -07:00
|
|
|
gfxFT2Font::GetOrMakeFont(const nsAString& aName, const gfxFontStyle *aStyle,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aNeedsBold)
|
2009-01-22 22:24:29 -08:00
|
|
|
{
|
2011-09-23 04:15:36 -07:00
|
|
|
#ifdef ANDROID
|
2011-09-23 04:16:13 -07:00
|
|
|
FT2FontEntry *fe = static_cast<FT2FontEntry*>
|
2011-09-23 04:15:36 -07:00
|
|
|
(gfxPlatformFontList::PlatformFontList()->
|
|
|
|
FindFontForFamily(aName, aStyle, aNeedsBold));
|
|
|
|
#else
|
2011-09-23 04:16:13 -07:00
|
|
|
FT2FontEntry *fe = static_cast<FT2FontEntry*>
|
2009-10-07 07:13:40 -07:00
|
|
|
(gfxToolkitPlatform::GetPlatform()->FindFontEntry(aName, *aStyle));
|
2011-09-23 04:15:36 -07:00
|
|
|
#endif
|
2009-04-22 22:29:47 -07:00
|
|
|
if (!fe) {
|
2009-09-10 13:52:40 -07:00
|
|
|
NS_WARNING("Failed to find font entry for font!");
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2009-04-22 22:29:47 -07:00
|
|
|
}
|
2009-01-22 22:24:29 -08:00
|
|
|
|
2011-07-26 07:04:55 -07:00
|
|
|
nsRefPtr<gfxFT2Font> font = GetOrMakeFont(fe, aStyle, aNeedsBold);
|
2009-09-09 08:35:08 -07:00
|
|
|
return font.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<gfxFT2Font>
|
2011-09-23 04:16:13 -07:00
|
|
|
gfxFT2Font::GetOrMakeFont(FT2FontEntry *aFontEntry, const gfxFontStyle *aStyle,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aNeedsBold)
|
2009-09-09 08:35:08 -07:00
|
|
|
{
|
2011-09-23 02:34:42 -07:00
|
|
|
nsRefPtr<gfxFont> font = gfxFontCache::GetCache()->Lookup(aFontEntry, aStyle);
|
2009-04-22 22:29:47 -07:00
|
|
|
if (!font) {
|
2011-09-23 04:16:13 -07:00
|
|
|
cairo_scaled_font_t *scaledFont = aFontEntry->CreateScaledFont(aStyle);
|
2013-08-09 01:51:51 -07:00
|
|
|
if (!scaledFont) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2011-07-26 07:04:55 -07:00
|
|
|
font = new gfxFT2Font(scaledFont, aFontEntry, aStyle, aNeedsBold);
|
2009-10-30 16:13:41 -07:00
|
|
|
cairo_scaled_font_destroy(scaledFont);
|
2013-08-09 01:51:51 -07:00
|
|
|
if (!font) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2013-08-09 01:51:51 -07:00
|
|
|
}
|
2009-01-22 22:24:29 -08:00
|
|
|
gfxFontCache::GetCache()->AddNew(font);
|
|
|
|
}
|
2013-04-28 04:52:10 -07:00
|
|
|
return font.forget().downcast<gfxFT2Font>();
|
2009-01-22 22:24:29 -08:00
|
|
|
}
|
|
|
|
|
2009-09-10 13:52:40 -07:00
|
|
|
void
|
2012-08-22 08:56:38 -07:00
|
|
|
gfxFT2Font::FillGlyphDataForChar(uint32_t ch, CachedGlyphData *gd)
|
2009-09-10 13:52:40 -07:00
|
|
|
{
|
2009-10-30 16:13:41 -07:00
|
|
|
gfxFT2LockedFace faceLock(this);
|
|
|
|
FT_Face face = faceLock.get();
|
2009-09-10 13:52:40 -07:00
|
|
|
|
2012-05-21 14:09:54 -07:00
|
|
|
if (!face->charmap || face->charmap->encoding != FT_ENCODING_UNICODE) {
|
|
|
|
FT_Select_Charmap(face, FT_ENCODING_UNICODE);
|
|
|
|
}
|
2009-09-10 13:52:40 -07:00
|
|
|
FT_UInt gid = FT_Get_Char_Index(face, ch);
|
|
|
|
|
|
|
|
if (gid == 0) {
|
|
|
|
// this font doesn't support this char!
|
|
|
|
NS_ASSERTION(gid != 0, "We don't have a glyph, but font indicated that it supported this char in tables?");
|
|
|
|
gd->glyphIndex = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-08 14:52:57 -08:00
|
|
|
FT_Int32 flags = gfxPlatform::GetPlatform()->FontHintingEnabled() ?
|
|
|
|
FT_LOAD_DEFAULT :
|
|
|
|
(FT_LOAD_NO_AUTOHINT | FT_LOAD_NO_HINTING);
|
|
|
|
FT_Error err = FT_Load_Glyph(face, gid, flags);
|
2009-09-10 13:52:40 -07:00
|
|
|
|
|
|
|
if (err) {
|
|
|
|
// hmm, this is weird, we failed to load a glyph that we had?
|
|
|
|
NS_WARNING("Failed to load glyph that we got from Get_Char_index");
|
|
|
|
|
|
|
|
gd->glyphIndex = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gd->glyphIndex = gid;
|
|
|
|
gd->lsbDelta = face->glyph->lsb_delta;
|
|
|
|
gd->rsbDelta = face->glyph->rsb_delta;
|
|
|
|
gd->xAdvance = face->glyph->advance.x;
|
|
|
|
}
|
2012-03-23 05:14:16 -07:00
|
|
|
|
|
|
|
void
|
2013-10-14 19:19:47 -07:00
|
|
|
gfxFT2Font::AddSizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontCacheSizes* aSizes) const
|
2012-03-23 05:14:16 -07:00
|
|
|
{
|
2013-10-14 19:19:47 -07:00
|
|
|
gfxFont::AddSizeOfExcludingThis(aMallocSizeOf, aSizes);
|
2012-03-23 05:14:16 -07:00
|
|
|
aSizes->mFontInstances +=
|
2012-07-30 07:20:58 -07:00
|
|
|
mCharGlyphCache.SizeOfExcludingThis(nullptr, aMallocSizeOf);
|
2012-03-23 05:14:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-10-14 19:19:47 -07:00
|
|
|
gfxFT2Font::AddSizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf,
|
|
|
|
FontCacheSizes* aSizes) const
|
2012-03-23 05:14:16 -07:00
|
|
|
{
|
|
|
|
aSizes->mFontInstances += aMallocSizeOf(this);
|
2013-10-14 19:19:47 -07:00
|
|
|
AddSizeOfExcludingThis(aMallocSizeOf, aSizes);
|
2012-03-23 05:14:16 -07:00
|
|
|
}
|
2013-06-05 10:48:59 -07:00
|
|
|
|
|
|
|
#ifdef USE_SKIA
|
|
|
|
mozilla::TemporaryRef<mozilla::gfx::GlyphRenderingOptions>
|
|
|
|
gfxFT2Font::GetGlyphRenderingOptions()
|
|
|
|
{
|
|
|
|
mozilla::gfx::FontHinting hinting;
|
|
|
|
|
|
|
|
if (gfxPlatform::GetPlatform()->FontHintingEnabled()) {
|
2014-01-10 11:06:16 -08:00
|
|
|
hinting = mozilla::gfx::FontHinting::NORMAL;
|
2013-06-05 10:48:59 -07:00
|
|
|
} else {
|
2014-01-10 11:06:16 -08:00
|
|
|
hinting = mozilla::gfx::FontHinting::NONE;
|
2013-06-05 10:48:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// We don't want to force the use of the autohinter over the font's built in hints
|
|
|
|
return mozilla::gfx::Factory::CreateCairoGlyphRenderingOptions(hinting, false);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|