зеркало из https://github.com/mozilla/gecko-dev.git
66 строки
2.0 KiB
C++
66 строки
2.0 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "NativeFontResourceFontconfig.h"
|
|
#include "ScaledFontFontconfig.h"
|
|
#include "Logging.h"
|
|
|
|
namespace mozilla {
|
|
namespace gfx {
|
|
|
|
NativeFontResourceFontconfig::NativeFontResourceFontconfig(UniquePtr<uint8_t[]>&& aFontData, FT_Face aFace)
|
|
: mFontData(Move(aFontData)),
|
|
mFace(aFace)
|
|
{
|
|
}
|
|
|
|
NativeFontResourceFontconfig::~NativeFontResourceFontconfig()
|
|
{
|
|
if (mFace) {
|
|
FT_Done_Face(mFace);
|
|
mFace = nullptr;
|
|
}
|
|
}
|
|
|
|
already_AddRefed<NativeFontResourceFontconfig>
|
|
NativeFontResourceFontconfig::Create(uint8_t *aFontData, uint32_t aDataLength)
|
|
{
|
|
if (!aFontData || !aDataLength) {
|
|
return nullptr;
|
|
}
|
|
UniquePtr<uint8_t[]> fontData(new uint8_t[aDataLength]);
|
|
memcpy(fontData.get(), aFontData, aDataLength);
|
|
|
|
FT_Face face;
|
|
if (FT_New_Memory_Face(Factory::GetFTLibrary(), fontData.get(), aDataLength, 0, &face) != FT_Err_Ok) {
|
|
return nullptr;
|
|
}
|
|
if (FT_Select_Charmap(face, FT_ENCODING_UNICODE) != FT_Err_Ok) {
|
|
FT_Done_Face(face);
|
|
return nullptr;
|
|
}
|
|
|
|
RefPtr<NativeFontResourceFontconfig> resource =
|
|
new NativeFontResourceFontconfig(Move(fontData), face);
|
|
return resource.forget();
|
|
}
|
|
|
|
already_AddRefed<ScaledFont>
|
|
NativeFontResourceFontconfig::CreateScaledFont(uint32_t aIndex, Float aGlyphSize,
|
|
const uint8_t* aInstanceData, uint32_t aInstanceDataLength)
|
|
{
|
|
if (aInstanceDataLength < sizeof(ScaledFontFontconfig::InstanceData)) {
|
|
gfxWarning() << "Fontconfig scaled font instance data is truncated.";
|
|
return nullptr;
|
|
}
|
|
return ScaledFontFontconfig::CreateFromInstanceData(
|
|
*reinterpret_cast<const ScaledFontFontconfig::InstanceData*>(aInstanceData),
|
|
mFace, nullptr, 0, aGlyphSize);
|
|
}
|
|
|
|
} // gfx
|
|
} // mozilla
|