2009-11-04 00:34:20 +01:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009 Red Hat, Inc.
|
|
|
|
* Copyright © 2009 Keith Stribley
|
2015-10-07 23:33:20 +02:00
|
|
|
* Copyright © 2015 Google, Inc.
|
2009-11-04 00:34:20 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-11-04 00:34:20 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
2015-10-07 23:33:20 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2009-11-04 00:34:20 +01:00
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2019-06-18 07:41:49 +02:00
|
|
|
#ifdef HAVE_FREETYPE
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
#include "hb-ft.h"
|
|
|
|
|
2022-12-22 18:51:26 +01:00
|
|
|
#include "hb-cache.hh"
|
2022-02-05 01:44:38 +01:00
|
|
|
#include "hb-draw.hh"
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-font.hh"
|
|
|
|
#include "hb-machinery.hh"
|
2022-06-18 13:28:54 +02:00
|
|
|
#include "hb-ot-os2-table.hh"
|
|
|
|
#include "hb-ot-shaper-arabic-pua.hh"
|
2022-12-22 18:51:26 +01:00
|
|
|
#include "hb-paint.hh"
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-08-15 20:41:59 +02:00
|
|
|
#include FT_ADVANCES_H
|
2016-09-13 18:40:07 +02:00
|
|
|
#include FT_MULTIPLE_MASTERS_H
|
2022-02-05 01:44:38 +01:00
|
|
|
#include FT_OUTLINE_H
|
2009-11-04 00:34:20 +01:00
|
|
|
#include FT_TRUETYPE_TABLES_H
|
2023-02-01 22:27:45 +01:00
|
|
|
#include FT_SYNTHESIS_H
|
2023-01-26 21:26:47 +01:00
|
|
|
#if (FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) >= 21300
|
2022-12-22 19:26:10 +01:00
|
|
|
#include FT_COLOR_H
|
2023-01-01 21:14:04 +01:00
|
|
|
#endif
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2018-10-27 13:40:43 +02:00
|
|
|
/**
|
|
|
|
* SECTION:hb-ft
|
|
|
|
* @title: hb-ft
|
|
|
|
* @short_description: FreeType integration
|
|
|
|
* @include: hb-ft.h
|
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Functions for using HarfBuzz with the FreeType library.
|
|
|
|
*
|
|
|
|
* HarfBuzz supports using FreeType to provide face and
|
2018-10-27 13:40:43 +02:00
|
|
|
* font data.
|
2019-05-20 18:37:56 +02:00
|
|
|
*
|
|
|
|
* <note>Note that FreeType is not thread-safe, therefore these
|
|
|
|
* functions are not thread-safe either.</note>
|
2018-10-27 13:40:43 +02:00
|
|
|
**/
|
|
|
|
|
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
/* TODO:
|
|
|
|
*
|
|
|
|
* In general, this file does a fine job of what it's supposed to do.
|
|
|
|
* There are, however, things that need more work:
|
|
|
|
*
|
2015-10-07 23:33:20 +02:00
|
|
|
* - FreeType works in 26.6 mode. Clients can decide to use that mode, and everything
|
2014-12-29 03:56:15 +01:00
|
|
|
* would work fine. However, we also abuse this API for performing in font-space,
|
|
|
|
* but don't pass the correct flags to FreeType. We just abuse the no-hinting mode
|
|
|
|
* for that, such that no rounding etc happens. As such, we don't set ppem, and
|
2015-10-07 23:33:20 +02:00
|
|
|
* pass NO_HINTING as load_flags. Would be much better to use NO_SCALE, and scale
|
2018-10-09 22:07:55 +02:00
|
|
|
* ourselves.
|
2014-12-29 03:56:15 +01:00
|
|
|
*
|
2011-05-17 00:15:37 +02:00
|
|
|
* - We don't handle / allow for emboldening / obliqueing.
|
|
|
|
*
|
2013-03-10 02:30:22 +01:00
|
|
|
* - In the future, we should add constructors to create fonts in font space?
|
2011-05-17 00:15:37 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2023-02-27 19:20:47 +01:00
|
|
|
using hb_ft_advance_cache_t = hb_cache_t<16, 24, 8, false>;
|
2022-08-03 21:22:51 +02:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
struct hb_ft_font_t
|
|
|
|
{
|
|
|
|
int load_flags;
|
2016-07-20 11:35:54 +02:00
|
|
|
bool symbol; /* Whether selected cmap is symbol cmap. */
|
2015-10-07 23:33:20 +02:00
|
|
|
bool unref; /* Whether to destroy ft_face when done. */
|
2022-08-19 17:48:12 +02:00
|
|
|
bool transform; /* Whether to apply FT_Face's transform. */
|
2018-09-11 14:41:19 +02:00
|
|
|
|
2022-11-16 21:34:37 +01:00
|
|
|
mutable hb_mutex_t lock; /* Protects members below. */
|
2022-05-20 19:40:44 +02:00
|
|
|
FT_Face ft_face;
|
2022-05-24 03:02:27 +02:00
|
|
|
mutable unsigned cached_serial;
|
2022-08-03 21:22:51 +02:00
|
|
|
mutable hb_ft_advance_cache_t advance_cache;
|
2015-10-07 23:33:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static hb_ft_font_t *
|
2016-07-20 11:35:54 +02:00
|
|
|
_hb_ft_font_create (FT_Face ft_face, bool symbol, bool unref)
|
2015-10-07 23:33:20 +02:00
|
|
|
{
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) hb_calloc (1, sizeof (hb_ft_font_t));
|
2020-06-28 23:52:15 +02:00
|
|
|
if (unlikely (!ft_font)) return nullptr;
|
2015-10-07 23:33:20 +02:00
|
|
|
|
2018-10-09 22:24:50 +02:00
|
|
|
ft_font->lock.init ();
|
2015-10-07 23:33:20 +02:00
|
|
|
ft_font->ft_face = ft_face;
|
2016-07-20 11:35:54 +02:00
|
|
|
ft_font->symbol = symbol;
|
2015-10-07 23:33:20 +02:00
|
|
|
ft_font->unref = unref;
|
|
|
|
|
2015-10-16 01:20:22 +02:00
|
|
|
ft_font->load_flags = FT_LOAD_DEFAULT | FT_LOAD_NO_HINTING;
|
2015-10-07 23:33:20 +02:00
|
|
|
|
2022-05-24 03:02:27 +02:00
|
|
|
ft_font->cached_serial = (unsigned) -1;
|
2018-09-11 14:35:26 +02:00
|
|
|
ft_font->advance_cache.init ();
|
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
return ft_font;
|
|
|
|
}
|
|
|
|
|
2016-07-11 22:38:23 +02:00
|
|
|
static void
|
2017-10-11 15:51:31 +02:00
|
|
|
_hb_ft_face_destroy (void *data)
|
2016-07-11 22:38:23 +02:00
|
|
|
{
|
2017-10-11 15:51:31 +02:00
|
|
|
FT_Done_Face ((FT_Face) data);
|
2016-07-11 22:38:23 +02:00
|
|
|
}
|
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
static void
|
2017-10-11 15:51:31 +02:00
|
|
|
_hb_ft_font_destroy (void *data)
|
2015-10-07 23:33:20 +02:00
|
|
|
{
|
2017-10-11 15:51:31 +02:00
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) data;
|
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
if (ft_font->unref)
|
2016-07-11 22:38:23 +02:00
|
|
|
_hb_ft_face_destroy (ft_font->ft_face);
|
2015-10-07 23:33:20 +02:00
|
|
|
|
2018-10-09 22:24:50 +02:00
|
|
|
ft_font->lock.fini ();
|
|
|
|
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_free (ft_font);
|
2015-10-07 23:33:20 +02:00
|
|
|
}
|
|
|
|
|
2022-05-20 20:30:46 +02:00
|
|
|
|
|
|
|
/* hb_font changed, update FT_Face. */
|
2022-06-01 13:19:23 +02:00
|
|
|
static void _hb_ft_hb_font_changed (hb_font_t *font, FT_Face ft_face)
|
2022-05-20 20:30:46 +02:00
|
|
|
{
|
2022-08-19 17:48:12 +02:00
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data;
|
|
|
|
|
2022-07-15 20:55:31 +02:00
|
|
|
float x_mult = 1.f, y_mult = 1.f;
|
2022-07-15 23:09:28 +02:00
|
|
|
|
|
|
|
if (font->x_scale < 0) x_mult = -x_mult;
|
|
|
|
if (font->y_scale < 0) y_mult = -y_mult;
|
|
|
|
|
2022-07-15 20:55:31 +02:00
|
|
|
if (FT_Set_Char_Size (ft_face,
|
|
|
|
abs (font->x_scale), abs (font->y_scale),
|
|
|
|
0, 0
|
2022-05-20 20:30:46 +02:00
|
|
|
#if 0
|
|
|
|
font->x_ppem * 72 * 64 / font->x_scale,
|
2022-07-15 20:55:31 +02:00
|
|
|
font->y_ppem * 72 * 64 / font->y_scale
|
2022-05-20 20:30:46 +02:00
|
|
|
#endif
|
2022-07-15 20:55:31 +02:00
|
|
|
) && ft_face->num_fixed_sizes)
|
2022-05-20 20:30:46 +02:00
|
|
|
{
|
2022-07-15 22:19:17 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-07-15 20:55:31 +02:00
|
|
|
/* Bitmap font, eg. bitmap color emoji. */
|
2022-12-24 19:01:32 +01:00
|
|
|
/* Pick largest size? */
|
|
|
|
int x_scale = ft_face->available_sizes[ft_face->num_fixed_sizes - 1].x_ppem;
|
|
|
|
int y_scale = ft_face->available_sizes[ft_face->num_fixed_sizes - 1].y_ppem;
|
2022-07-15 20:55:31 +02:00
|
|
|
FT_Set_Char_Size (ft_face,
|
|
|
|
x_scale, y_scale,
|
|
|
|
0, 0);
|
2022-07-15 23:09:28 +02:00
|
|
|
|
|
|
|
/* This contains the sign that was previously in x_mult/y_mult. */
|
2022-07-15 20:55:31 +02:00
|
|
|
x_mult = (float) font->x_scale / x_scale;
|
|
|
|
y_mult = (float) font->y_scale / y_scale;
|
2022-07-15 22:19:17 +02:00
|
|
|
#endif
|
2022-07-15 20:55:31 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* Shrug */ }
|
|
|
|
|
|
|
|
|
|
|
|
if (x_mult != 1.f || y_mult != 1.f)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix = { (int) roundf (x_mult * (1<<16)), 0,
|
|
|
|
0, (int) roundf (y_mult * (1<<16))};
|
2022-05-20 20:30:46 +02:00
|
|
|
FT_Set_Transform (ft_face, &matrix, nullptr);
|
2022-08-19 17:48:12 +02:00
|
|
|
ft_font->transform = true;
|
2022-05-20 20:30:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_FT_GET_VAR_BLEND_COORDINATES) && !defined(HB_NO_VAR)
|
|
|
|
unsigned int num_coords;
|
2022-07-23 21:25:54 +02:00
|
|
|
const float *coords = hb_font_get_var_coords_design (font, &num_coords);
|
2022-05-20 20:30:46 +02:00
|
|
|
if (num_coords)
|
|
|
|
{
|
|
|
|
FT_Fixed *ft_coords = (FT_Fixed *) hb_calloc (num_coords, sizeof (FT_Fixed));
|
|
|
|
if (ft_coords)
|
|
|
|
{
|
|
|
|
for (unsigned int i = 0; i < num_coords; i++)
|
2022-07-23 21:25:54 +02:00
|
|
|
ft_coords[i] = coords[i] * 65536.f;
|
|
|
|
FT_Set_Var_Design_Coordinates (ft_face, num_coords, ft_coords);
|
2022-05-20 20:30:46 +02:00
|
|
|
hb_free (ft_coords);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if hb_font changed, update FT_Face. */
|
|
|
|
static inline bool
|
2022-06-01 13:19:23 +02:00
|
|
|
_hb_ft_hb_font_check_changed (hb_font_t *font,
|
|
|
|
const hb_ft_font_t *ft_font)
|
2022-05-20 20:30:46 +02:00
|
|
|
{
|
|
|
|
if (font->serial != ft_font->cached_serial)
|
|
|
|
{
|
2022-06-01 13:19:23 +02:00
|
|
|
_hb_ft_hb_font_changed (font, ft_font->ft_face);
|
|
|
|
ft_font->advance_cache.clear ();
|
2022-05-20 20:30:46 +02:00
|
|
|
ft_font->cached_serial = font->serial;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-08 18:47:15 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_font_set_load_flags:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
* @load_flags: The FreeType load flags to set
|
2015-10-08 18:47:15 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Sets the FT_Load_Glyph load flags for the specified #hb_font_t.
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* For more information, see
|
|
|
|
* https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#ft_load_xxx
|
2015-10-08 18:47:15 +02:00
|
|
|
*
|
2022-12-28 16:04:21 +01:00
|
|
|
* This function works with #hb_font_t objects created by
|
|
|
|
* hb_ft_font_create() or hb_ft_font_create_referenced().
|
|
|
|
*
|
2015-10-08 18:47:15 +02:00
|
|
|
* Since: 1.0.5
|
|
|
|
**/
|
2015-10-07 23:33:20 +02:00
|
|
|
void
|
|
|
|
hb_ft_font_set_load_flags (hb_font_t *font, int load_flags)
|
|
|
|
{
|
2018-11-03 19:51:38 +01:00
|
|
|
if (hb_object_is_immutable (font))
|
2015-10-07 23:33:20 +02:00
|
|
|
return;
|
|
|
|
|
2019-11-22 22:22:27 +01:00
|
|
|
if (unlikely (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy))
|
2015-10-07 23:33:20 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data;
|
|
|
|
|
|
|
|
ft_font->load_flags = load_flags;
|
|
|
|
}
|
|
|
|
|
2015-10-08 18:47:15 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_font_get_load_flags:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
*
|
|
|
|
* Fetches the FT_Load_Glyph load flags of the specified #hb_font_t.
|
2015-10-08 18:47:15 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* For more information, see
|
|
|
|
* https://www.freetype.org/freetype2/docs/reference/ft2-base_interface.html#ft_load_xxx
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2022-12-28 16:04:21 +01:00
|
|
|
* This function works with #hb_font_t objects created by
|
|
|
|
* hb_ft_font_create() or hb_ft_font_create_referenced().
|
|
|
|
*
|
|
|
|
* Return value: FT_Load_Glyph flags found, or 0
|
2015-10-08 18:47:15 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0.5
|
|
|
|
**/
|
2015-10-07 23:33:20 +02:00
|
|
|
int
|
|
|
|
hb_ft_font_get_load_flags (hb_font_t *font)
|
|
|
|
{
|
2019-11-22 22:22:27 +01:00
|
|
|
if (unlikely (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy))
|
2015-10-07 23:33:20 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data;
|
|
|
|
|
|
|
|
return ft_font->load_flags;
|
|
|
|
}
|
|
|
|
|
2019-05-20 18:37:56 +02:00
|
|
|
/**
|
2022-06-05 08:58:53 +02:00
|
|
|
* hb_ft_font_get_face: (skip)
|
2019-05-20 18:37:56 +02:00
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
*
|
|
|
|
* Fetches the FT_Face associated with the specified #hb_font_t
|
|
|
|
* font object.
|
|
|
|
*
|
2022-12-28 16:04:21 +01:00
|
|
|
* This function works with #hb_font_t objects created by
|
|
|
|
* hb_ft_font_create() or hb_ft_font_create_referenced().
|
|
|
|
*
|
2022-06-30 08:43:57 +02:00
|
|
|
* Return value: (nullable): the FT_Face found or `NULL`
|
2019-05-20 18:37:56 +02:00
|
|
|
*
|
2019-11-22 22:22:27 +01:00
|
|
|
* Since: 0.9.2
|
2019-05-20 18:37:56 +02:00
|
|
|
**/
|
2015-10-07 23:33:20 +02:00
|
|
|
FT_Face
|
|
|
|
hb_ft_font_get_face (hb_font_t *font)
|
|
|
|
{
|
2019-11-22 22:22:27 +01:00
|
|
|
if (unlikely (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy))
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data;
|
|
|
|
|
|
|
|
return ft_font->ft_face;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-06-05 08:58:53 +02:00
|
|
|
* hb_ft_font_lock_face: (skip)
|
2020-12-30 22:48:25 +01:00
|
|
|
* @font: #hb_font_t to work upon
|
2019-11-22 22:22:27 +01:00
|
|
|
*
|
2022-12-28 16:04:21 +01:00
|
|
|
* Gets the FT_Face associated with @font.
|
|
|
|
*
|
|
|
|
* This face will be kept around and access to the FT_Face object
|
|
|
|
* from other HarfBuzz API wil be blocked until you call hb_ft_font_unlock_face().
|
|
|
|
*
|
|
|
|
* This function works with #hb_font_t objects created by
|
|
|
|
* hb_ft_font_create() or hb_ft_font_create_referenced().
|
2019-11-22 22:22:27 +01:00
|
|
|
*
|
2022-07-18 19:03:54 +02:00
|
|
|
* Return value: (nullable) (transfer none): the FT_Face associated with @font or `NULL`
|
2020-04-17 20:07:48 +02:00
|
|
|
* Since: 2.6.5
|
2019-11-22 22:22:27 +01:00
|
|
|
**/
|
|
|
|
FT_Face
|
|
|
|
hb_ft_font_lock_face (hb_font_t *font)
|
|
|
|
{
|
|
|
|
if (unlikely (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy))
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2015-10-07 23:33:20 +02:00
|
|
|
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data;
|
|
|
|
|
2019-11-22 22:22:27 +01:00
|
|
|
ft_font->lock.lock ();
|
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
return ft_font->ft_face;
|
|
|
|
}
|
|
|
|
|
2019-11-22 22:22:27 +01:00
|
|
|
/**
|
2022-07-18 19:03:54 +02:00
|
|
|
* hb_ft_font_unlock_face: (skip)
|
2020-12-30 22:48:25 +01:00
|
|
|
* @font: #hb_font_t to work upon
|
2019-11-22 22:22:27 +01:00
|
|
|
*
|
2020-12-30 22:48:25 +01:00
|
|
|
* Releases an FT_Face previously obtained with hb_ft_font_lock_face().
|
2019-11-22 22:22:27 +01:00
|
|
|
*
|
2020-04-17 20:07:48 +02:00
|
|
|
* Since: 2.6.5
|
2019-11-22 22:22:27 +01:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
hb_ft_font_unlock_face (hb_font_t *font)
|
|
|
|
{
|
|
|
|
if (unlikely (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font->user_data;
|
|
|
|
|
|
|
|
ft_font->lock.unlock ();
|
|
|
|
}
|
2015-10-07 23:33:20 +02:00
|
|
|
|
|
|
|
|
2011-05-11 02:41:13 +02:00
|
|
|
static hb_bool_t
|
2022-06-18 13:28:54 +02:00
|
|
|
hb_ft_get_nominal_glyph (hb_font_t *font,
|
2016-02-24 11:05:23 +01:00
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t unicode,
|
|
|
|
hb_codepoint_t *glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
2009-11-04 00:34:20 +01:00
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2016-02-24 11:05:23 +01:00
|
|
|
unsigned int g = FT_Get_Char_Index (ft_font->ft_face, unicode);
|
|
|
|
|
|
|
|
if (unlikely (!g))
|
2016-07-20 11:35:54 +02:00
|
|
|
{
|
2022-06-18 13:28:54 +02:00
|
|
|
if (unlikely (ft_font->symbol))
|
2016-07-20 11:35:54 +02:00
|
|
|
{
|
2022-06-18 13:28:54 +02:00
|
|
|
switch ((unsigned) font->face->table.OS2->get_font_page ()) {
|
2022-06-19 18:13:31 +02:00
|
|
|
case OT::OS2::font_page_t::FONT_PAGE_NONE:
|
2022-06-18 13:28:54 +02:00
|
|
|
if (unicode <= 0x00FFu)
|
|
|
|
/* For symbol-encoded OpenType fonts, we duplicate the
|
|
|
|
* U+F000..F0FF range at U+0000..U+00FF. That's what
|
|
|
|
* Windows seems to do, and that's hinted about at:
|
|
|
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/recom
|
|
|
|
* under "Non-Standard (Symbol) Fonts". */
|
|
|
|
g = FT_Get_Char_Index (ft_font->ft_face, 0xF000u + unicode);
|
|
|
|
break;
|
2022-06-19 18:41:45 +02:00
|
|
|
#ifndef HB_NO_OT_SHAPER_ARABIC_FALLBACK
|
2022-06-18 13:28:54 +02:00
|
|
|
case OT::OS2::font_page_t::FONT_PAGE_SIMP_ARABIC:
|
2022-06-19 18:47:38 +02:00
|
|
|
g = FT_Get_Char_Index (ft_font->ft_face, _hb_arabic_pua_simp_map (unicode));
|
2022-06-18 13:28:54 +02:00
|
|
|
break;
|
|
|
|
case OT::OS2::font_page_t::FONT_PAGE_TRAD_ARABIC:
|
2022-06-19 18:47:38 +02:00
|
|
|
g = FT_Get_Char_Index (ft_font->ft_face, _hb_arabic_pua_trad_map (unicode));
|
2022-06-18 13:28:54 +02:00
|
|
|
break;
|
2022-06-19 18:41:45 +02:00
|
|
|
#endif
|
2022-06-19 18:13:31 +02:00
|
|
|
default:
|
|
|
|
break;
|
2022-06-18 13:28:54 +02:00
|
|
|
}
|
2016-07-20 11:35:54 +02:00
|
|
|
if (!g)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-24 11:05:23 +01:00
|
|
|
|
|
|
|
*glyph = g;
|
|
|
|
return true;
|
|
|
|
}
|
2009-11-04 21:48:32 +01:00
|
|
|
|
[ot/ft] Implement get_nominal_glyphs() callback
Some more measurable speedup. The recent commits' speedups are as follows:
Testing with Roboto, ****when disabling kern and liga****:
Before:
FT --features=-kern,-liga
user↦ 0m0.521s
OT --features=-liga,-kern
user↦ 0m0.568s
After:
FT --features=-liga,-kern
user↦ 0m0.428s
OT --features=-liga,-kern
user↦ 0m0.470s
So, 17% speedup.
Note that FT callbacks are faster than OT these days since we added an advance
cache to FT. I don't think the difference is enough to justify adding a cache
to OT.
When not disabling kern, the thing is three times slower, so the speedups
are three times less impressive... Still, 5% not bad for a codebase that I
otherwise thought is optimized out.
Note that, because of this and other optimiztions in our main shaper,
disabling kern and liga, the OT shaper is now *faster* than the fallback
shaper. So, that's my recommendation to clients that need the absolute
fastest...
2018-10-09 21:07:04 +02:00
|
|
|
static unsigned int
|
|
|
|
hb_ft_get_nominal_glyphs (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
unsigned int count,
|
|
|
|
const hb_codepoint_t *first_unicode,
|
|
|
|
unsigned int unicode_stride,
|
|
|
|
hb_codepoint_t *first_glyph,
|
|
|
|
unsigned int glyph_stride,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
[ot/ft] Implement get_nominal_glyphs() callback
Some more measurable speedup. The recent commits' speedups are as follows:
Testing with Roboto, ****when disabling kern and liga****:
Before:
FT --features=-kern,-liga
user↦ 0m0.521s
OT --features=-liga,-kern
user↦ 0m0.568s
After:
FT --features=-liga,-kern
user↦ 0m0.428s
OT --features=-liga,-kern
user↦ 0m0.470s
So, 17% speedup.
Note that FT callbacks are faster than OT these days since we added an advance
cache to FT. I don't think the difference is enough to justify adding a cache
to OT.
When not disabling kern, the thing is three times slower, so the speedups
are three times less impressive... Still, 5% not bad for a codebase that I
otherwise thought is optimized out.
Note that, because of this and other optimiztions in our main shaper,
disabling kern and liga, the OT shaper is now *faster* than the fallback
shaper. So, that's my recommendation to clients that need the absolute
fastest...
2018-10-09 21:07:04 +02:00
|
|
|
unsigned int done;
|
|
|
|
for (done = 0;
|
|
|
|
done < count && (*first_glyph = FT_Get_Char_Index (ft_font->ft_face, *first_unicode));
|
|
|
|
done++)
|
|
|
|
{
|
2019-01-22 12:45:40 +01:00
|
|
|
first_unicode = &StructAtOffsetUnaligned<hb_codepoint_t> (first_unicode, unicode_stride);
|
|
|
|
first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
|
[ot/ft] Implement get_nominal_glyphs() callback
Some more measurable speedup. The recent commits' speedups are as follows:
Testing with Roboto, ****when disabling kern and liga****:
Before:
FT --features=-kern,-liga
user↦ 0m0.521s
OT --features=-liga,-kern
user↦ 0m0.568s
After:
FT --features=-liga,-kern
user↦ 0m0.428s
OT --features=-liga,-kern
user↦ 0m0.470s
So, 17% speedup.
Note that FT callbacks are faster than OT these days since we added an advance
cache to FT. I don't think the difference is enough to justify adding a cache
to OT.
When not disabling kern, the thing is three times slower, so the speedups
are three times less impressive... Still, 5% not bad for a codebase that I
otherwise thought is optimized out.
Note that, because of this and other optimiztions in our main shaper,
disabling kern and liga, the OT shaper is now *faster* than the fallback
shaper. So, that's my recommendation to clients that need the absolute
fastest...
2018-10-09 21:07:04 +02:00
|
|
|
}
|
|
|
|
/* We don't need to do ft_font->symbol dance here, since HB calls the singular
|
|
|
|
* nominal_glyph() for what we don't handle here. */
|
|
|
|
return done;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-24 11:05:23 +01:00
|
|
|
static hb_bool_t
|
|
|
|
hb_ft_get_variation_glyph (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t unicode,
|
|
|
|
hb_codepoint_t variation_selector,
|
|
|
|
hb_codepoint_t *glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2016-02-24 11:05:23 +01:00
|
|
|
unsigned int g = FT_Face_GetCharVariantIndex (ft_font->ft_face, unicode, variation_selector);
|
2011-05-17 00:15:37 +02:00
|
|
|
|
2015-05-19 03:37:06 +02:00
|
|
|
if (unlikely (!g))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*glyph = g;
|
|
|
|
return true;
|
2011-05-17 00:15:37 +02:00
|
|
|
}
|
|
|
|
|
2018-09-11 13:05:47 +02:00
|
|
|
static void
|
|
|
|
hb_ft_get_glyph_h_advances (hb_font_t* font, void* font_data,
|
|
|
|
unsigned count,
|
2018-10-09 14:01:49 +02:00
|
|
|
const hb_codepoint_t *first_glyph,
|
2018-09-11 13:05:47 +02:00
|
|
|
unsigned glyph_stride,
|
|
|
|
hb_position_t *first_advance,
|
|
|
|
unsigned advance_stride,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2023-02-02 01:37:10 +01:00
|
|
|
hb_position_t *orig_first_advance = first_advance;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2018-09-11 13:05:47 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2018-09-11 14:35:26 +02:00
|
|
|
int load_flags = ft_font->load_flags;
|
2022-08-19 17:48:12 +02:00
|
|
|
float x_mult;
|
2022-07-15 21:36:50 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-08-19 17:48:12 +02:00
|
|
|
if (ft_font->transform)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix;
|
|
|
|
FT_Get_Transform (ft_face, &matrix, nullptr);
|
|
|
|
x_mult = sqrtf ((float)matrix.xx * matrix.xx + (float)matrix.xy * matrix.xy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
x_mult *= font->x_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
}
|
|
|
|
else
|
2022-07-15 21:36:50 +02:00
|
|
|
#endif
|
2022-08-19 17:48:12 +02:00
|
|
|
{
|
|
|
|
x_mult = font->x_scale < 0 ? -1 : +1;
|
|
|
|
}
|
2018-09-11 13:05:47 +02:00
|
|
|
|
2018-09-11 14:35:26 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2018-09-11 14:05:16 +02:00
|
|
|
{
|
|
|
|
FT_Fixed v = 0;
|
2018-09-11 14:35:26 +02:00
|
|
|
hb_codepoint_t glyph = *first_glyph;
|
|
|
|
|
|
|
|
unsigned int cv;
|
|
|
|
if (ft_font->advance_cache.get (glyph, &cv))
|
|
|
|
v = cv;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FT_Get_Advance (ft_face, glyph, load_flags, &v);
|
2022-12-24 20:57:33 +01:00
|
|
|
/* Work around bug that FreeType seems to return negative advance
|
|
|
|
* for variable-set fonts if x_scale is negative! */
|
|
|
|
v = abs (v);
|
2023-01-31 06:43:01 +01:00
|
|
|
v = (int) (v * x_mult + (1<<9)) >> 10;
|
2018-09-11 14:35:26 +02:00
|
|
|
ft_font->advance_cache.set (glyph, v);
|
|
|
|
}
|
2018-09-11 14:05:16 +02:00
|
|
|
|
2023-01-31 06:43:01 +01:00
|
|
|
*first_advance = v;
|
2019-01-22 12:45:40 +01:00
|
|
|
first_glyph = &StructAtOffsetUnaligned<hb_codepoint_t> (first_glyph, glyph_stride);
|
|
|
|
first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
|
2018-09-11 13:05:47 +02:00
|
|
|
}
|
2023-02-02 01:37:10 +01:00
|
|
|
|
2023-02-07 19:29:49 +01:00
|
|
|
if (font->x_strength && !font->embolden_in_place)
|
2023-02-02 01:37:10 +01:00
|
|
|
{
|
|
|
|
/* Emboldening. */
|
2023-02-07 19:29:49 +01:00
|
|
|
hb_position_t x_strength = font->x_scale >= 0 ? font->x_strength : -font->x_strength;
|
2023-02-02 01:37:10 +01:00
|
|
|
first_advance = orig_first_advance;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
{
|
2023-02-07 19:29:49 +01:00
|
|
|
*first_advance += *first_advance ? x_strength : 0;
|
2023-02-02 01:37:10 +01:00
|
|
|
first_advance = &StructAtOffsetUnaligned<hb_position_t> (first_advance, advance_stride);
|
|
|
|
}
|
|
|
|
}
|
2018-09-11 13:05:47 +02:00
|
|
|
}
|
|
|
|
|
2021-12-08 19:45:30 +01:00
|
|
|
#ifndef HB_NO_VERTICAL
|
2011-05-25 17:27:33 +02:00
|
|
|
static hb_position_t
|
2018-04-23 16:33:57 +02:00
|
|
|
hb_ft_get_glyph_v_advance (hb_font_t *font,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2011-08-15 20:41:59 +02:00
|
|
|
FT_Fixed v;
|
2022-08-19 17:48:12 +02:00
|
|
|
float y_mult;
|
2022-07-15 21:36:50 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-08-19 17:48:12 +02:00
|
|
|
if (ft_font->transform)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix;
|
|
|
|
FT_Get_Transform (ft_font->ft_face, &matrix, nullptr);
|
|
|
|
y_mult = sqrtf ((float)matrix.yx * matrix.yx + (float)matrix.yy * matrix.yy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
y_mult *= font->y_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
}
|
|
|
|
else
|
2022-07-15 21:36:50 +02:00
|
|
|
#endif
|
2022-08-19 17:48:12 +02:00
|
|
|
{
|
|
|
|
y_mult = font->y_scale < 0 ? -1 : +1;
|
|
|
|
}
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
if (unlikely (FT_Get_Advance (ft_font->ft_face, glyph, ft_font->load_flags | FT_LOAD_VERTICAL_LAYOUT, &v)))
|
2011-05-25 17:27:33 +02:00
|
|
|
return 0;
|
2011-05-11 02:41:13 +02:00
|
|
|
|
2022-07-15 20:55:31 +02:00
|
|
|
v = (int) (y_mult * v);
|
2015-01-28 21:40:40 +01:00
|
|
|
|
2011-05-19 19:08:00 +02:00
|
|
|
/* Note: FreeType's vertical metrics grows downward while other FreeType coordinates
|
|
|
|
* have a Y growing upward. Hence the extra negation. */
|
2022-03-22 04:07:11 +01:00
|
|
|
|
2023-02-07 19:29:49 +01:00
|
|
|
hb_position_t y_strength = font->y_scale >= 0 ? font->y_strength : -font->y_strength;
|
|
|
|
return ((-v + (1<<9)) >> 10) + (font->embolden_in_place ? 0 : y_strength);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
2021-12-08 19:45:30 +01:00
|
|
|
#endif
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2021-12-08 19:45:30 +01:00
|
|
|
#ifndef HB_NO_VERTICAL
|
2011-05-17 00:15:37 +02:00
|
|
|
static hb_bool_t
|
2018-04-23 16:33:57 +02:00
|
|
|
hb_ft_get_glyph_v_origin (hb_font_t *font,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
2011-05-18 05:27:22 +02:00
|
|
|
hb_position_t *x,
|
|
|
|
hb_position_t *y,
|
2011-05-17 00:15:37 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2010-10-27 07:13:56 +02:00
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2015-10-07 23:33:20 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2022-08-19 17:48:12 +02:00
|
|
|
float x_mult, y_mult;
|
2022-07-15 21:36:50 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-08-19 17:48:12 +02:00
|
|
|
if (ft_font->transform)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix;
|
|
|
|
FT_Get_Transform (ft_face, &matrix, nullptr);
|
|
|
|
x_mult = sqrtf ((float)matrix.xx * matrix.xx + (float)matrix.xy * matrix.xy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
x_mult *= font->x_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
y_mult = sqrtf ((float)matrix.yx * matrix.yx + (float)matrix.yy * matrix.yy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
y_mult *= font->y_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
}
|
|
|
|
else
|
2022-07-15 21:36:50 +02:00
|
|
|
#endif
|
2022-08-19 17:48:12 +02:00
|
|
|
{
|
|
|
|
x_mult = font->x_scale < 0 ? -1 : +1;
|
|
|
|
y_mult = font->y_scale < 0 ? -1 : +1;
|
|
|
|
}
|
2010-10-27 07:13:56 +02:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, ft_font->load_flags)))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2010-10-27 07:13:56 +02:00
|
|
|
|
2011-05-19 19:08:00 +02:00
|
|
|
/* Note: FreeType's vertical metrics grows downward while other FreeType coordinates
|
|
|
|
* have a Y growing upward. Hence the extra negation. */
|
|
|
|
*x = ft_face->glyph->metrics.horiBearingX - ft_face->glyph->metrics.vertBearingX;
|
|
|
|
*y = ft_face->glyph->metrics.horiBearingY - (-ft_face->glyph->metrics.vertBearingY);
|
|
|
|
|
2022-07-15 20:55:31 +02:00
|
|
|
*x = (hb_position_t) (x_mult * *x);
|
|
|
|
*y = (hb_position_t) (y_mult * *y);
|
2015-01-28 21:40:40 +01:00
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2010-10-27 07:13:56 +02:00
|
|
|
}
|
2021-12-08 19:45:30 +01:00
|
|
|
#endif
|
2010-10-27 07:13:56 +02:00
|
|
|
|
2019-06-17 23:06:04 +02:00
|
|
|
#ifndef HB_NO_OT_SHAPE_FALLBACK
|
2019-06-17 22:39:49 +02:00
|
|
|
static hb_position_t
|
|
|
|
hb_ft_get_glyph_h_kerning (hb_font_t *font,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t left_glyph,
|
|
|
|
hb_codepoint_t right_glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2022-05-20 20:17:31 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2019-06-17 22:39:49 +02:00
|
|
|
FT_Vector kerningv;
|
|
|
|
|
|
|
|
FT_Kerning_Mode mode = font->x_ppem ? FT_KERNING_DEFAULT : FT_KERNING_UNFITTED;
|
|
|
|
if (FT_Get_Kerning (ft_font->ft_face, left_glyph, right_glyph, mode, &kerningv))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return kerningv.x;
|
|
|
|
}
|
2019-06-17 23:06:04 +02:00
|
|
|
#endif
|
2019-06-17 22:39:49 +02:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
static hb_bool_t
|
2018-04-23 16:33:57 +02:00
|
|
|
hb_ft_get_glyph_extents (hb_font_t *font,
|
2011-05-12 05:25:28 +02:00
|
|
|
void *font_data,
|
2010-10-27 07:13:56 +02:00
|
|
|
hb_codepoint_t glyph,
|
2011-05-11 02:41:13 +02:00
|
|
|
hb_glyph_extents_t *extents,
|
2011-05-12 05:25:28 +02:00
|
|
|
void *user_data HB_UNUSED)
|
2010-10-27 07:13:56 +02:00
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2015-10-07 23:33:20 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2022-08-19 17:48:12 +02:00
|
|
|
float x_mult, y_mult;
|
2023-01-09 21:36:55 +01:00
|
|
|
float slant_xy = font->slant_xy;
|
2022-07-15 21:36:50 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-08-19 17:48:12 +02:00
|
|
|
if (ft_font->transform)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix;
|
|
|
|
FT_Get_Transform (ft_face, &matrix, nullptr);
|
|
|
|
x_mult = sqrtf ((float)matrix.xx * matrix.xx + (float)matrix.xy * matrix.xy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
x_mult *= font->x_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
y_mult = sqrtf ((float)matrix.yx * matrix.yx + (float)matrix.yy * matrix.yy) / 65536.f;
|
2022-12-24 18:35:26 +01:00
|
|
|
y_mult *= font->y_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
}
|
|
|
|
else
|
2022-07-15 21:36:50 +02:00
|
|
|
#endif
|
2022-08-19 17:48:12 +02:00
|
|
|
{
|
|
|
|
x_mult = font->x_scale < 0 ? -1 : +1;
|
|
|
|
y_mult = font->y_scale < 0 ? -1 : +1;
|
|
|
|
}
|
2010-10-27 07:13:56 +02:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, ft_font->load_flags)))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2011-05-17 00:15:37 +02:00
|
|
|
|
2023-01-09 21:47:59 +01:00
|
|
|
/* Copied from hb_font_t::scale_glyph_extents. */
|
|
|
|
|
2023-01-09 21:36:55 +01:00
|
|
|
float x1 = x_mult * ft_face->glyph->metrics.horiBearingX;
|
|
|
|
float y1 = y_mult * ft_face->glyph->metrics.horiBearingY;
|
|
|
|
float x2 = x1 + x_mult * ft_face->glyph->metrics.width;
|
|
|
|
float y2 = y1 + y_mult * -ft_face->glyph->metrics.height;
|
2022-07-15 20:55:31 +02:00
|
|
|
|
2022-12-22 18:53:24 +01:00
|
|
|
/* Apply slant. */
|
2023-01-09 21:43:56 +01:00
|
|
|
if (slant_xy)
|
|
|
|
{
|
|
|
|
x1 += hb_min (y1 * slant_xy, y2 * slant_xy);
|
|
|
|
x2 += hb_max (y1 * slant_xy, y2 * slant_xy);
|
|
|
|
}
|
2023-01-09 21:36:55 +01:00
|
|
|
|
|
|
|
extents->x_bearing = floorf (x1);
|
|
|
|
extents->y_bearing = floorf (y1);
|
|
|
|
extents->width = ceilf (x2) - extents->x_bearing;
|
|
|
|
extents->height = ceilf (y2) - extents->y_bearing;
|
2022-12-22 18:53:24 +01:00
|
|
|
|
2023-02-07 21:49:16 +01:00
|
|
|
if (font->x_strength || font->y_strength)
|
|
|
|
{
|
|
|
|
/* Y */
|
|
|
|
int y_shift = font->y_strength;
|
|
|
|
if (font->y_scale < 0) y_shift = -y_shift;
|
|
|
|
extents->y_bearing += y_shift;
|
|
|
|
extents->height -= y_shift;
|
|
|
|
|
|
|
|
/* X */
|
|
|
|
int x_shift = font->x_strength;
|
|
|
|
if (font->x_scale < 0) x_shift = -x_shift;
|
|
|
|
if (font->embolden_in_place)
|
|
|
|
extents->x_bearing -= x_shift / 2;
|
|
|
|
extents->width += x_shift;
|
|
|
|
}
|
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2010-10-27 07:13:56 +02:00
|
|
|
}
|
|
|
|
|
2011-05-12 21:14:13 +02:00
|
|
|
static hb_bool_t
|
2011-05-17 23:55:03 +02:00
|
|
|
hb_ft_get_glyph_contour_point (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
|
|
|
unsigned int point_index,
|
|
|
|
hb_position_t *x,
|
|
|
|
hb_position_t *y,
|
|
|
|
void *user_data HB_UNUSED)
|
2011-05-11 02:41:13 +02:00
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2015-10-07 23:33:20 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph, ft_font->load_flags)))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
if (unlikely (point_index >= (unsigned int) ft_face->glyph->outline.n_points))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2011-05-17 00:15:37 +02:00
|
|
|
*x = ft_face->glyph->outline.points[point_index].x;
|
|
|
|
*y = ft_face->glyph->outline.points[point_index].y;
|
2009-11-04 21:48:32 +01:00
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
2012-05-27 17:29:21 +02:00
|
|
|
static hb_bool_t
|
2012-07-13 15:32:30 +02:00
|
|
|
hb_ft_get_glyph_name (hb_font_t *font HB_UNUSED,
|
2012-05-27 17:29:21 +02:00
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
|
|
|
char *name, unsigned int size,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2012-05-27 17:29:21 +02:00
|
|
|
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_bool_t ret = !FT_Get_Glyph_Name (ft_face, glyph, name, size);
|
2013-03-07 01:37:31 +01:00
|
|
|
if (ret && (size && !*name))
|
|
|
|
ret = false;
|
2012-05-27 17:29:21 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static hb_bool_t
|
2012-07-13 15:32:30 +02:00
|
|
|
hb_ft_get_glyph_from_name (hb_font_t *font HB_UNUSED,
|
2012-05-27 17:29:21 +02:00
|
|
|
void *font_data,
|
|
|
|
const char *name, int len, /* -1 means nul-terminated */
|
|
|
|
hb_codepoint_t *glyph,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
2015-10-07 23:33:20 +02:00
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2015-10-07 23:33:20 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2012-05-27 17:29:21 +02:00
|
|
|
|
|
|
|
if (len < 0)
|
|
|
|
*glyph = FT_Get_Name_Index (ft_face, (FT_String *) name);
|
|
|
|
else {
|
|
|
|
/* Make a nul-terminated version. */
|
|
|
|
char buf[128];
|
2019-05-08 05:54:31 +02:00
|
|
|
len = hb_min (len, (int) sizeof (buf) - 1);
|
2012-05-27 17:29:21 +02:00
|
|
|
strncpy (buf, name, len);
|
|
|
|
buf[len] = '\0';
|
|
|
|
*glyph = FT_Get_Name_Index (ft_face, buf);
|
|
|
|
}
|
|
|
|
|
2013-07-11 20:56:45 +02:00
|
|
|
if (*glyph == 0)
|
|
|
|
{
|
|
|
|
/* Check whether the given name was actually the name of glyph 0. */
|
|
|
|
char buf[128];
|
|
|
|
if (!FT_Get_Glyph_Name(ft_face, 0, buf, sizeof (buf)) &&
|
2019-08-24 15:27:14 +02:00
|
|
|
len < 0 ? !strcmp (buf, name) : !strncmp (buf, name, len))
|
2013-07-11 20:56:45 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-27 17:29:21 +02:00
|
|
|
return *glyph != 0;
|
|
|
|
}
|
|
|
|
|
2015-10-26 08:23:22 +01:00
|
|
|
static hb_bool_t
|
|
|
|
hb_ft_get_font_h_extents (hb_font_t *font HB_UNUSED,
|
|
|
|
void *font_data,
|
|
|
|
hb_font_extents_t *metrics,
|
|
|
|
void *user_data HB_UNUSED)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2018-10-09 22:24:50 +02:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
2015-10-26 08:23:22 +01:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2022-08-19 17:48:12 +02:00
|
|
|
float y_mult;
|
2022-07-15 21:36:50 +02:00
|
|
|
#ifdef HAVE_FT_GET_TRANSFORM
|
2022-08-19 17:48:12 +02:00
|
|
|
if (ft_font->transform)
|
|
|
|
{
|
|
|
|
FT_Matrix matrix;
|
|
|
|
FT_Get_Transform (ft_face, &matrix, nullptr);
|
|
|
|
y_mult = sqrtf ((float)matrix.yx * matrix.yx + (float)matrix.yy * matrix.yy) / 65536.f;
|
2022-12-24 18:25:43 +01:00
|
|
|
y_mult *= font->y_scale < 0 ? -1 : +1;
|
2022-08-19 17:48:12 +02:00
|
|
|
}
|
|
|
|
else
|
2022-07-15 21:36:50 +02:00
|
|
|
#endif
|
2022-08-19 17:48:12 +02:00
|
|
|
{
|
|
|
|
y_mult = font->y_scale < 0 ? -1 : +1;
|
|
|
|
}
|
2022-05-20 20:30:46 +02:00
|
|
|
|
2022-07-15 22:48:29 +02:00
|
|
|
if (ft_face->units_per_EM != 0)
|
|
|
|
{
|
|
|
|
metrics->ascender = FT_MulFix(ft_face->ascender, ft_face->size->metrics.y_scale);
|
|
|
|
metrics->descender = FT_MulFix(ft_face->descender, ft_face->size->metrics.y_scale);
|
|
|
|
metrics->line_gap = FT_MulFix( ft_face->height, ft_face->size->metrics.y_scale ) - (metrics->ascender - metrics->descender);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Bitmap-only font, eg. color bitmap font. */
|
|
|
|
metrics->ascender = ft_face->size->metrics.ascender;
|
|
|
|
metrics->descender = ft_face->size->metrics.descender;
|
|
|
|
metrics->line_gap = ft_face->size->metrics.height - (metrics->ascender - metrics->descender);
|
|
|
|
}
|
|
|
|
|
2023-02-07 21:52:53 +01:00
|
|
|
metrics->ascender = (hb_position_t) (y_mult * (metrics->ascender + font->y_strength));
|
2022-07-15 20:55:31 +02:00
|
|
|
metrics->descender = (hb_position_t) (y_mult * metrics->descender);
|
|
|
|
metrics->line_gap = (hb_position_t) (y_mult * metrics->line_gap);
|
|
|
|
|
2015-10-26 08:23:22 +01:00
|
|
|
return true;
|
|
|
|
}
|
2012-05-27 17:29:21 +02:00
|
|
|
|
2022-02-05 01:44:38 +01:00
|
|
|
#ifndef HB_NO_DRAW
|
|
|
|
|
|
|
|
static int
|
|
|
|
_hb_ft_move_to (const FT_Vector *to,
|
2022-10-28 21:17:15 +02:00
|
|
|
void *arg)
|
2022-02-05 01:44:38 +01:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
hb_draw_session_t *drawing = (hb_draw_session_t *) arg;
|
2022-02-05 01:44:38 +01:00
|
|
|
drawing->move_to (to->x, to->y);
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_hb_ft_line_to (const FT_Vector *to,
|
2022-10-28 21:17:15 +02:00
|
|
|
void *arg)
|
2022-02-05 01:44:38 +01:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
hb_draw_session_t *drawing = (hb_draw_session_t *) arg;
|
2022-02-05 01:44:38 +01:00
|
|
|
drawing->line_to (to->x, to->y);
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_hb_ft_conic_to (const FT_Vector *control,
|
|
|
|
const FT_Vector *to,
|
2022-10-28 21:17:15 +02:00
|
|
|
void *arg)
|
2022-02-05 01:44:38 +01:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
hb_draw_session_t *drawing = (hb_draw_session_t *) arg;
|
2022-02-05 01:44:38 +01:00
|
|
|
drawing->quadratic_to (control->x, control->y,
|
|
|
|
to->x, to->y);
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
_hb_ft_cubic_to (const FT_Vector *control1,
|
|
|
|
const FT_Vector *control2,
|
|
|
|
const FT_Vector *to,
|
2022-10-28 21:17:15 +02:00
|
|
|
void *arg)
|
2022-02-05 01:44:38 +01:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
hb_draw_session_t *drawing = (hb_draw_session_t *) arg;
|
2022-02-05 01:44:38 +01:00
|
|
|
drawing->cubic_to (control1->x, control1->y,
|
|
|
|
control2->x, control2->y,
|
|
|
|
to->x, to->y);
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2023-02-01 22:27:45 +01:00
|
|
|
hb_ft_draw_glyph (hb_font_t *font,
|
2022-12-22 18:42:27 +01:00
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t glyph,
|
|
|
|
hb_draw_funcs_t *draw_funcs, void *draw_data,
|
|
|
|
void *user_data HB_UNUSED)
|
2022-02-05 01:44:38 +01:00
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
|
|
|
hb_lock_t lock (ft_font->lock);
|
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
|
|
|
|
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, glyph,
|
|
|
|
FT_LOAD_NO_BITMAP | ft_font->load_flags)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const FT_Outline_Funcs outline_funcs = {
|
2022-10-28 21:17:15 +02:00
|
|
|
_hb_ft_move_to,
|
|
|
|
_hb_ft_line_to,
|
|
|
|
_hb_ft_conic_to,
|
|
|
|
_hb_ft_cubic_to,
|
2022-02-05 01:44:38 +01:00
|
|
|
0, /* shift */
|
|
|
|
0, /* delta */
|
|
|
|
};
|
|
|
|
|
2022-02-08 00:55:01 +01:00
|
|
|
hb_draw_session_t draw_session (draw_funcs, draw_data, font->slant_xy);
|
2022-02-05 01:44:38 +01:00
|
|
|
|
2023-02-07 19:29:49 +01:00
|
|
|
/* Embolden */
|
|
|
|
if (font->x_strength || font->y_strength)
|
|
|
|
{
|
|
|
|
FT_Outline_EmboldenXY (&ft_face->glyph->outline, font->x_strength, font->y_strength);
|
|
|
|
|
|
|
|
int x_shift = 0;
|
|
|
|
int y_shift = 0;
|
|
|
|
if (font->embolden_in_place)
|
|
|
|
{
|
|
|
|
/* Undo the FreeType shift. */
|
|
|
|
x_shift = -font->x_strength / 2;
|
|
|
|
y_shift = 0;
|
|
|
|
if (font->y_scale < 0) y_shift = -font->y_strength;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* FreeType applied things in the wrong direction for negative scale; fix up. */
|
|
|
|
if (font->x_scale < 0) x_shift = -font->x_strength;
|
|
|
|
if (font->y_scale < 0) y_shift = -font->y_strength;
|
|
|
|
}
|
|
|
|
if (x_shift || y_shift)
|
|
|
|
{
|
|
|
|
auto &outline = ft_face->glyph->outline;
|
2023-02-07 21:47:04 +01:00
|
|
|
for (auto &point : hb_iter (outline.points, outline.contours[outline.n_contours - 1] + 1))
|
2023-02-07 19:29:49 +01:00
|
|
|
{
|
|
|
|
point.x += x_shift;
|
|
|
|
point.y += y_shift;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-05 01:44:38 +01:00
|
|
|
FT_Outline_Decompose (&ft_face->glyph->outline,
|
|
|
|
&outline_funcs,
|
|
|
|
&draw_session);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-12-22 18:51:26 +01:00
|
|
|
#ifndef HB_NO_PAINT
|
2023-01-26 21:26:47 +01:00
|
|
|
#if (FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) >= 21300
|
2022-12-22 23:50:43 +01:00
|
|
|
|
|
|
|
#include "hb-ft-colr.hh"
|
|
|
|
|
2022-12-22 18:51:26 +01:00
|
|
|
static void
|
|
|
|
hb_ft_paint_glyph (hb_font_t *font,
|
|
|
|
void *font_data,
|
|
|
|
hb_codepoint_t gid,
|
|
|
|
hb_paint_funcs_t *paint_funcs, void *paint_data,
|
2022-12-22 19:26:10 +01:00
|
|
|
unsigned int palette_index,
|
2022-12-22 18:51:26 +01:00
|
|
|
hb_color_t foreground,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
const hb_ft_font_t *ft_font = (const hb_ft_font_t *) font_data;
|
2022-12-22 19:26:10 +01:00
|
|
|
hb_lock_t lock (ft_font->lock);
|
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
2022-12-22 18:51:26 +01:00
|
|
|
|
2022-12-24 18:31:30 +01:00
|
|
|
/* We release the lock before calling into glyph callbacks, such that
|
2022-12-22 18:51:26 +01:00
|
|
|
* eg. draw API can call back into the face.*/
|
|
|
|
|
2022-12-22 21:21:48 +01:00
|
|
|
if (unlikely (FT_Load_Glyph (ft_face, gid,
|
|
|
|
ft_font->load_flags | FT_LOAD_COLOR)))
|
2022-12-22 19:26:10 +01:00
|
|
|
return;
|
2022-12-22 18:51:26 +01:00
|
|
|
|
2022-12-22 19:26:10 +01:00
|
|
|
if (ft_face->glyph->format == FT_GLYPH_FORMAT_OUTLINE)
|
2022-12-22 18:51:26 +01:00
|
|
|
{
|
2022-12-22 23:50:43 +01:00
|
|
|
if (hb_ft_paint_glyph_colr (font, font_data, gid,
|
|
|
|
paint_funcs, paint_data,
|
|
|
|
palette_index, foreground,
|
|
|
|
user_data))
|
|
|
|
return;
|
2022-12-22 19:26:10 +01:00
|
|
|
|
|
|
|
/* Simple outline. */
|
|
|
|
ft_font->lock.unlock ();
|
2022-12-22 18:51:26 +01:00
|
|
|
paint_funcs->push_clip_glyph (paint_data, gid, font);
|
2022-12-23 20:10:22 +01:00
|
|
|
ft_font->lock.lock ();
|
2022-12-22 18:51:26 +01:00
|
|
|
paint_funcs->color (paint_data, true, foreground);
|
|
|
|
paint_funcs->pop_clip (paint_data);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-22 21:21:48 +01:00
|
|
|
auto *glyph = ft_face->glyph;
|
|
|
|
if (glyph->format == FT_GLYPH_FORMAT_BITMAP)
|
|
|
|
{
|
|
|
|
auto &bitmap = glyph->bitmap;
|
|
|
|
if (bitmap.pixel_mode == FT_PIXEL_MODE_BGRA)
|
|
|
|
{
|
|
|
|
if (bitmap.pitch != (signed) bitmap.width * 4)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ft_font->lock.unlock ();
|
|
|
|
|
|
|
|
hb_blob_t *blob = hb_blob_create ((const char *) bitmap.buffer,
|
|
|
|
bitmap.pitch * bitmap.rows,
|
|
|
|
HB_MEMORY_MODE_DUPLICATE,
|
|
|
|
nullptr, nullptr);
|
|
|
|
|
|
|
|
hb_glyph_extents_t extents;
|
|
|
|
if (!hb_font_get_glyph_extents (font, gid, &extents))
|
|
|
|
goto out;
|
|
|
|
|
2022-12-24 18:56:06 +01:00
|
|
|
if (!paint_funcs->image (paint_data,
|
|
|
|
blob,
|
|
|
|
bitmap.width,
|
|
|
|
bitmap.rows,
|
|
|
|
HB_PAINT_IMAGE_FORMAT_BGRA,
|
|
|
|
font->slant_xy,
|
|
|
|
&extents))
|
|
|
|
{
|
|
|
|
/* TODO Try a forced outline load and paint? */
|
|
|
|
}
|
2022-12-22 21:21:48 +01:00
|
|
|
|
|
|
|
out:
|
|
|
|
hb_blob_destroy (blob);
|
|
|
|
ft_font->lock.lock ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2022-12-22 18:51:26 +01:00
|
|
|
}
|
|
|
|
#endif
|
2023-01-01 21:14:04 +01:00
|
|
|
#endif
|
2022-12-22 18:51:26 +01:00
|
|
|
|
2022-02-05 01:44:38 +01:00
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
static inline void free_static_ft_funcs ();
|
2015-11-05 05:37:49 +01:00
|
|
|
|
2018-08-12 22:46:53 +02:00
|
|
|
static struct hb_ft_font_funcs_lazy_loader_t : hb_font_funcs_lazy_loader_t<hb_ft_font_funcs_lazy_loader_t>
|
2012-06-05 18:31:51 +02:00
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
static hb_font_funcs_t *create ()
|
2015-11-05 05:37:49 +01:00
|
|
|
{
|
2018-08-12 22:46:53 +02:00
|
|
|
hb_font_funcs_t *funcs = hb_font_funcs_create ();
|
2015-11-05 05:37:49 +01:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_font_funcs_set_nominal_glyph_func (funcs, hb_ft_get_nominal_glyph, nullptr, nullptr);
|
[ot/ft] Implement get_nominal_glyphs() callback
Some more measurable speedup. The recent commits' speedups are as follows:
Testing with Roboto, ****when disabling kern and liga****:
Before:
FT --features=-kern,-liga
user↦ 0m0.521s
OT --features=-liga,-kern
user↦ 0m0.568s
After:
FT --features=-liga,-kern
user↦ 0m0.428s
OT --features=-liga,-kern
user↦ 0m0.470s
So, 17% speedup.
Note that FT callbacks are faster than OT these days since we added an advance
cache to FT. I don't think the difference is enough to justify adding a cache
to OT.
When not disabling kern, the thing is three times slower, so the speedups
are three times less impressive... Still, 5% not bad for a codebase that I
otherwise thought is optimized out.
Note that, because of this and other optimiztions in our main shaper,
disabling kern and liga, the OT shaper is now *faster* than the fallback
shaper. So, that's my recommendation to clients that need the absolute
fastest...
2018-10-09 21:07:04 +02:00
|
|
|
hb_font_funcs_set_nominal_glyphs_func (funcs, hb_ft_get_nominal_glyphs, nullptr, nullptr);
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_font_funcs_set_variation_glyph_func (funcs, hb_ft_get_variation_glyph, nullptr, nullptr);
|
2021-12-08 19:45:30 +01:00
|
|
|
|
|
|
|
hb_font_funcs_set_font_h_extents_func (funcs, hb_ft_get_font_h_extents, nullptr, nullptr);
|
2018-09-11 13:05:47 +02:00
|
|
|
hb_font_funcs_set_glyph_h_advances_func (funcs, hb_ft_get_glyph_h_advances, nullptr, nullptr);
|
2017-10-15 12:11:08 +02:00
|
|
|
//hb_font_funcs_set_glyph_h_origin_func (funcs, hb_ft_get_glyph_h_origin, nullptr, nullptr);
|
2021-12-08 19:45:30 +01:00
|
|
|
|
|
|
|
#ifndef HB_NO_VERTICAL
|
|
|
|
//hb_font_funcs_set_font_v_extents_func (funcs, hb_ft_get_font_v_extents, nullptr, nullptr);
|
|
|
|
hb_font_funcs_set_glyph_v_advance_func (funcs, hb_ft_get_glyph_v_advance, nullptr, nullptr);
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_font_funcs_set_glyph_v_origin_func (funcs, hb_ft_get_glyph_v_origin, nullptr, nullptr);
|
2021-12-08 19:45:30 +01:00
|
|
|
#endif
|
|
|
|
|
2019-06-17 23:06:04 +02:00
|
|
|
#ifndef HB_NO_OT_SHAPE_FALLBACK
|
2019-06-17 22:39:49 +02:00
|
|
|
hb_font_funcs_set_glyph_h_kerning_func (funcs, hb_ft_get_glyph_h_kerning, nullptr, nullptr);
|
2019-06-17 23:06:04 +02:00
|
|
|
#endif
|
2019-06-17 22:39:49 +02:00
|
|
|
//hb_font_funcs_set_glyph_v_kerning_func (funcs, hb_ft_get_glyph_v_kerning, nullptr, nullptr);
|
2017-10-15 12:11:08 +02:00
|
|
|
hb_font_funcs_set_glyph_extents_func (funcs, hb_ft_get_glyph_extents, nullptr, nullptr);
|
|
|
|
hb_font_funcs_set_glyph_contour_point_func (funcs, hb_ft_get_glyph_contour_point, nullptr, nullptr);
|
|
|
|
hb_font_funcs_set_glyph_name_func (funcs, hb_ft_get_glyph_name, nullptr, nullptr);
|
|
|
|
hb_font_funcs_set_glyph_from_name_func (funcs, hb_ft_get_glyph_from_name, nullptr, nullptr);
|
2015-11-05 05:37:49 +01:00
|
|
|
|
2022-02-05 01:44:38 +01:00
|
|
|
#ifndef HB_NO_DRAW
|
2022-12-22 18:42:27 +01:00
|
|
|
hb_font_funcs_set_draw_glyph_func (funcs, hb_ft_draw_glyph, nullptr, nullptr);
|
2022-02-05 01:44:38 +01:00
|
|
|
#endif
|
|
|
|
|
2022-12-22 18:51:26 +01:00
|
|
|
#ifndef HB_NO_PAINT
|
2023-01-26 21:26:47 +01:00
|
|
|
#if (FREETYPE_MAJOR*10000 + FREETYPE_MINOR*100 + FREETYPE_PATCH) >= 21300
|
2022-12-22 18:51:26 +01:00
|
|
|
hb_font_funcs_set_paint_glyph_func (funcs, hb_ft_paint_glyph, nullptr, nullptr);
|
2023-01-01 21:14:04 +01:00
|
|
|
#endif
|
2022-12-22 18:51:26 +01:00
|
|
|
#endif
|
|
|
|
|
2015-11-05 05:40:05 +01:00
|
|
|
hb_font_funcs_make_immutable (funcs);
|
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
hb_atexit (free_static_ft_funcs);
|
2018-08-12 22:46:53 +02:00
|
|
|
|
|
|
|
return funcs;
|
|
|
|
}
|
|
|
|
} static_ft_funcs;
|
2015-11-05 05:37:49 +01:00
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
static inline
|
2018-12-17 19:01:01 +01:00
|
|
|
void free_static_ft_funcs ()
|
2018-08-12 22:46:53 +02:00
|
|
|
{
|
2018-08-13 02:19:55 +02:00
|
|
|
static_ft_funcs.free_instance ();
|
2018-08-12 22:46:53 +02:00
|
|
|
}
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2018-08-12 22:46:53 +02:00
|
|
|
static hb_font_funcs_t *
|
2018-12-17 19:01:01 +01:00
|
|
|
_hb_ft_get_font_funcs ()
|
2018-08-12 22:46:53 +02:00
|
|
|
{
|
2018-08-13 01:20:11 +02:00
|
|
|
return static_ft_funcs.get_unconst ();
|
2018-08-12 22:46:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_hb_ft_font_set_funcs (hb_font_t *font, FT_Face ft_face, bool unref)
|
|
|
|
{
|
2016-07-20 11:35:54 +02:00
|
|
|
bool symbol = ft_face->charmap && ft_face->charmap->encoding == FT_ENCODING_MS_SYMBOL;
|
|
|
|
|
2020-06-28 23:52:15 +02:00
|
|
|
hb_ft_font_t *ft_font = _hb_ft_font_create (ft_face, symbol, unref);
|
|
|
|
if (unlikely (!ft_font)) return;
|
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
hb_font_set_funcs (font,
|
2018-08-12 22:46:53 +02:00
|
|
|
_hb_ft_get_font_funcs (),
|
2020-06-28 23:52:15 +02:00
|
|
|
ft_font,
|
2017-10-11 15:51:31 +02:00
|
|
|
_hb_ft_font_destroy);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static hb_blob_t *
|
2019-07-05 16:16:41 +02:00
|
|
|
_hb_ft_reference_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
|
2009-11-04 00:34:20 +01:00
|
|
|
{
|
|
|
|
FT_Face ft_face = (FT_Face) user_data;
|
|
|
|
FT_Byte *buffer;
|
|
|
|
FT_ULong length = 0;
|
|
|
|
FT_Error error;
|
|
|
|
|
2011-08-08 23:37:41 +02:00
|
|
|
/* Note: FreeType like HarfBuzz uses the NONE tag for fetching the entire blob */
|
2010-04-29 20:15:32 +02:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
error = FT_Load_Sfnt_Table (ft_face, tag, 0, nullptr, &length);
|
2009-11-04 00:34:20 +01:00
|
|
|
if (error)
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2021-07-08 18:58:50 +02:00
|
|
|
buffer = (FT_Byte *) hb_malloc (length);
|
2017-08-10 02:09:21 +02:00
|
|
|
if (!buffer)
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
error = FT_Load_Sfnt_Table (ft_face, tag, 0, buffer, &length);
|
2018-07-27 23:55:29 +02:00
|
|
|
if (error)
|
|
|
|
{
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_free (buffer);
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2018-07-27 22:58:27 +02:00
|
|
|
}
|
2009-11-04 00:34:20 +01:00
|
|
|
|
|
|
|
return hb_blob_create ((const char *) buffer, length,
|
|
|
|
HB_MEMORY_MODE_WRITABLE,
|
2021-07-08 18:58:50 +02:00
|
|
|
buffer, hb_free);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
2013-09-14 02:34:42 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_face_create:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @ft_face: (destroy destroy) (scope notified): FT_Face to work upon
|
2020-12-30 23:19:29 +01:00
|
|
|
* @destroy: (nullable): A callback to call when the face object is not needed anymore
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Creates an #hb_face_t face object from the specified FT_Face.
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2022-12-28 16:42:59 +01:00
|
|
|
* Note that this is using the FT_Face object just to get at the underlying
|
|
|
|
* font data, and fonts created from the returned #hb_face_t will use the native
|
2022-12-28 19:07:54 +01:00
|
|
|
* HarfBuzz font implementation, unless you call hb_ft_font_set_funcs() on them.
|
2022-12-28 16:42:59 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* This variant of the function does not provide any life-cycle management.
|
|
|
|
*
|
|
|
|
* Most client programs should use hb_ft_face_create_referenced()
|
|
|
|
* (or, perhaps, hb_ft_face_create_cached()) instead.
|
|
|
|
*
|
|
|
|
* If you know you have valid reasons not to use hb_ft_face_create_referenced(),
|
|
|
|
* then it is the client program's responsibility to destroy @ft_face
|
|
|
|
* after the #hb_face_t face object has been destroyed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): the new #hb_face_t face object
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-14 02:34:42 +02:00
|
|
|
**/
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_face_t *
|
|
|
|
hb_ft_face_create (FT_Face ft_face,
|
|
|
|
hb_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
hb_face_t *face;
|
|
|
|
|
2017-08-10 02:09:21 +02:00
|
|
|
if (!ft_face->stream->read) {
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_blob_t *blob;
|
|
|
|
|
|
|
|
blob = hb_blob_create ((const char *) ft_face->stream->base,
|
|
|
|
(unsigned int) ft_face->stream->size,
|
2014-12-29 01:20:31 +01:00
|
|
|
HB_MEMORY_MODE_READONLY,
|
2011-04-20 09:03:32 +02:00
|
|
|
ft_face, destroy);
|
2011-05-12 04:49:29 +02:00
|
|
|
face = hb_face_create (blob, ft_face->face_index);
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_blob_destroy (blob);
|
|
|
|
} else {
|
2019-07-05 16:16:41 +02:00
|
|
|
face = hb_face_create_for_tables (_hb_ft_reference_table, ft_face, destroy);
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
|
|
|
|
2011-08-09 00:19:38 +02:00
|
|
|
hb_face_set_index (face, ft_face->face_index);
|
|
|
|
hb_face_set_upem (face, ft_face->units_per_EM);
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
return face;
|
|
|
|
}
|
|
|
|
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
/**
|
|
|
|
* hb_ft_face_create_referenced:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @ft_face: FT_Face to work upon
|
|
|
|
*
|
|
|
|
* Creates an #hb_face_t face object from the specified FT_Face.
|
|
|
|
*
|
2022-12-28 16:42:59 +01:00
|
|
|
* Note that this is using the FT_Face object just to get at the underlying
|
|
|
|
* font data, and fonts created from the returned #hb_face_t will use the native
|
2022-12-28 19:07:54 +01:00
|
|
|
* HarfBuzz font implementation, unless you call hb_ft_font_set_funcs() on them.
|
2022-12-28 16:42:59 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* This is the preferred variant of the hb_ft_face_create*
|
|
|
|
* function family, because it calls FT_Reference_Face() on @ft_face,
|
|
|
|
* ensuring that @ft_face remains alive as long as the resulting
|
2020-04-15 19:08:55 +02:00
|
|
|
* #hb_face_t face object remains alive. Also calls FT_Done_Face()
|
|
|
|
* when the #hb_face_t face object is destroyed.
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Use this version unless you know you have good reasons not to.
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Return value: (transfer full): the new #hb_face_t face object
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.38
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
**/
|
|
|
|
hb_face_t *
|
|
|
|
hb_ft_face_create_referenced (FT_Face ft_face)
|
|
|
|
{
|
|
|
|
FT_Reference_Face (ft_face);
|
2017-10-11 15:51:31 +02:00
|
|
|
return hb_ft_face_create (ft_face, _hb_ft_face_destroy);
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
}
|
|
|
|
|
2009-11-06 02:17:53 +01:00
|
|
|
static void
|
2022-10-28 21:17:15 +02:00
|
|
|
hb_ft_face_finalize (void *arg)
|
2009-11-06 02:17:53 +01:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
FT_Face ft_face = (FT_Face) arg;
|
2010-05-13 00:23:21 +02:00
|
|
|
hb_face_destroy ((hb_face_t *) ft_face->generic.data);
|
2009-11-06 02:17:53 +01:00
|
|
|
}
|
|
|
|
|
2013-09-14 02:34:42 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_face_create_cached:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @ft_face: FT_Face to work upon
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Creates an #hb_face_t face object from the specified FT_Face.
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2022-12-28 16:42:59 +01:00
|
|
|
* Note that this is using the FT_Face object just to get at the underlying
|
|
|
|
* font data, and fonts created from the returned #hb_face_t will use the native
|
2022-12-28 19:07:54 +01:00
|
|
|
* HarfBuzz font implementation, unless you call hb_ft_font_set_funcs() on them.
|
2022-12-28 16:42:59 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* This variant of the function caches the newly created #hb_face_t
|
2020-04-13 17:40:15 +02:00
|
|
|
* face object, using the @generic pointer of @ft_face. Subsequent function
|
2019-05-20 18:37:56 +02:00
|
|
|
* calls that are passed the same @ft_face parameter will have the same
|
|
|
|
* #hb_face_t returned to them, and that #hb_face_t will be correctly
|
|
|
|
* reference counted.
|
|
|
|
*
|
|
|
|
* However, client programs are still responsible for destroying
|
|
|
|
* @ft_face after the last #hb_face_t face object has been destroyed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): the new #hb_face_t face object
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-14 02:34:42 +02:00
|
|
|
**/
|
2009-11-05 23:39:16 +01:00
|
|
|
hb_face_t *
|
|
|
|
hb_ft_face_create_cached (FT_Face ft_face)
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!ft_face->generic.data || ft_face->generic.finalizer != (FT_Generic_Finalizer) hb_ft_face_finalize))
|
2009-11-05 23:58:41 +01:00
|
|
|
{
|
|
|
|
if (ft_face->generic.finalizer)
|
2009-11-06 21:19:22 +01:00
|
|
|
ft_face->generic.finalizer (ft_face);
|
2009-11-05 23:39:16 +01:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
ft_face->generic.data = hb_ft_face_create (ft_face, nullptr);
|
2022-10-28 21:17:15 +02:00
|
|
|
ft_face->generic.finalizer = hb_ft_face_finalize;
|
2009-11-05 23:58:41 +01:00
|
|
|
}
|
2009-11-05 23:39:16 +01:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
return hb_face_reference ((hb_face_t *) ft_face->generic.data);
|
2009-11-05 23:39:16 +01:00
|
|
|
}
|
|
|
|
|
2013-09-14 02:34:42 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_font_create:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @ft_face: (destroy destroy) (scope notified): FT_Face to work upon
|
2020-12-30 23:19:29 +01:00
|
|
|
* @destroy: (nullable): A callback to call when the font object is not needed anymore
|
2019-05-20 18:37:56 +02:00
|
|
|
*
|
|
|
|
* Creates an #hb_font_t font object from the specified FT_Face.
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* <note>Note: You must set the face size on @ft_face before calling
|
2020-12-26 23:53:23 +01:00
|
|
|
* hb_ft_font_create() on it. HarfBuzz assumes size is always set and will
|
|
|
|
* access `size` member of FT_Face unconditionally.</note>
|
2013-09-14 02:34:42 +02:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* This variant of the function does not provide any life-cycle management.
|
|
|
|
*
|
|
|
|
* Most client programs should use hb_ft_font_create_referenced()
|
|
|
|
* instead.
|
|
|
|
*
|
|
|
|
* If you know you have valid reasons not to use hb_ft_font_create_referenced(),
|
|
|
|
* then it is the client program's responsibility to destroy @ft_face
|
|
|
|
* after the #hb_font_t font object has been destroyed.
|
|
|
|
*
|
2020-04-15 19:46:31 +02:00
|
|
|
* HarfBuzz will use the @destroy callback on the #hb_font_t font object
|
|
|
|
* if it is supplied when you use this function. However, even if @destroy
|
|
|
|
* is provided, it is the client program's responsibility to destroy @ft_face,
|
|
|
|
* and it is the client program's responsibility to ensure that @ft_face is
|
|
|
|
* destroyed only after the #hb_font_t font object has been destroyed.
|
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* Return value: (transfer full): the new #hb_font_t font object
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-14 02:34:42 +02:00
|
|
|
**/
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_t *
|
|
|
|
hb_ft_font_create (FT_Face ft_face,
|
|
|
|
hb_destroy_func_t destroy)
|
|
|
|
{
|
|
|
|
hb_font_t *font;
|
2011-05-03 07:03:53 +02:00
|
|
|
hb_face_t *face;
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2011-05-03 07:03:53 +02:00
|
|
|
face = hb_ft_face_create (ft_face, destroy);
|
|
|
|
font = hb_font_create (face);
|
|
|
|
hb_face_destroy (face);
|
2015-10-07 23:33:20 +02:00
|
|
|
_hb_ft_font_set_funcs (font, ft_face, false);
|
2017-10-12 10:33:16 +02:00
|
|
|
hb_ft_font_changed (font);
|
|
|
|
return font;
|
|
|
|
}
|
|
|
|
|
2019-05-20 18:37:56 +02:00
|
|
|
/**
|
2020-12-30 22:48:25 +01:00
|
|
|
* hb_ft_font_changed:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
*
|
|
|
|
* Refreshes the state of @font when the underlying FT_Face has changed.
|
|
|
|
* This function should be called after changing the size or
|
|
|
|
* variation-axis settings on the FT_Face.
|
|
|
|
*
|
|
|
|
* Since: 1.0.5
|
|
|
|
**/
|
2017-10-12 10:33:16 +02:00
|
|
|
void
|
|
|
|
hb_ft_font_changed (hb_font_t *font)
|
|
|
|
{
|
2018-06-10 23:22:38 +02:00
|
|
|
if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy)
|
2017-10-12 10:33:16 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data;
|
2020-06-28 05:18:16 +02:00
|
|
|
|
2017-10-12 10:33:16 +02:00
|
|
|
FT_Face ft_face = ft_font->ft_face;
|
|
|
|
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_set_scale (font,
|
2016-08-09 02:24:04 +02:00
|
|
|
(int) (((uint64_t) ft_face->size->metrics.x_scale * (uint64_t) ft_face->units_per_EM + (1u<<15)) >> 16),
|
|
|
|
(int) (((uint64_t) ft_face->size->metrics.y_scale * (uint64_t) ft_face->units_per_EM + (1u<<15)) >> 16));
|
2014-12-29 03:56:15 +01:00
|
|
|
#if 0 /* hb-ft works in no-hinting model */
|
2009-11-04 00:34:20 +01:00
|
|
|
hb_font_set_ppem (font,
|
|
|
|
ft_face->size->metrics.x_ppem,
|
|
|
|
ft_face->size->metrics.y_ppem);
|
2014-12-29 03:56:15 +01:00
|
|
|
#endif
|
2009-11-04 00:34:20 +01:00
|
|
|
|
2019-11-20 02:04:00 +01:00
|
|
|
#if defined(HAVE_FT_GET_VAR_BLEND_COORDINATES) && !defined(HB_NO_VAR)
|
2017-10-15 12:11:08 +02:00
|
|
|
FT_MM_Var *mm_var = nullptr;
|
2016-09-13 23:49:46 +02:00
|
|
|
if (!FT_Get_MM_Var (ft_face, &mm_var))
|
|
|
|
{
|
2021-07-08 18:58:50 +02:00
|
|
|
FT_Fixed *ft_coords = (FT_Fixed *) hb_calloc (mm_var->num_axis, sizeof (FT_Fixed));
|
|
|
|
int *coords = (int *) hb_calloc (mm_var->num_axis, sizeof (int));
|
2017-01-23 01:41:45 +01:00
|
|
|
if (coords && ft_coords)
|
2016-09-13 23:49:46 +02:00
|
|
|
{
|
2017-01-23 01:41:45 +01:00
|
|
|
if (!FT_Get_Var_Blend_Coordinates (ft_face, mm_var->num_axis, ft_coords))
|
|
|
|
{
|
2018-01-05 14:06:25 +01:00
|
|
|
bool nonzero = false;
|
|
|
|
|
2017-01-23 01:41:45 +01:00
|
|
|
for (unsigned int i = 0; i < mm_var->num_axis; ++i)
|
2018-01-05 14:06:25 +01:00
|
|
|
{
|
2017-01-23 01:41:45 +01:00
|
|
|
coords[i] = ft_coords[i] >>= 2;
|
2018-01-05 14:06:25 +01:00
|
|
|
nonzero = nonzero || coords[i];
|
|
|
|
}
|
2017-01-23 01:41:45 +01:00
|
|
|
|
2018-01-05 14:06:25 +01:00
|
|
|
if (nonzero)
|
|
|
|
hb_font_set_var_coords_normalized (font, coords, mm_var->num_axis);
|
|
|
|
else
|
|
|
|
hb_font_set_var_coords_normalized (font, nullptr, 0);
|
2017-01-23 01:41:45 +01:00
|
|
|
}
|
2016-09-13 18:40:07 +02:00
|
|
|
}
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_free (coords);
|
|
|
|
hb_free (ft_coords);
|
2018-01-08 11:07:46 +01:00
|
|
|
#ifdef HAVE_FT_DONE_MM_VAR
|
|
|
|
FT_Done_MM_Var (ft_face->glyph->library, mm_var);
|
|
|
|
#else
|
2021-07-08 18:58:50 +02:00
|
|
|
hb_free (mm_var);
|
2018-01-08 11:07:46 +01:00
|
|
|
#endif
|
2016-09-13 18:40:07 +02:00
|
|
|
}
|
2016-09-13 23:49:46 +02:00
|
|
|
#endif
|
2022-07-22 13:48:27 +02:00
|
|
|
|
2022-07-25 16:40:02 +02:00
|
|
|
ft_font->advance_cache.clear ();
|
|
|
|
ft_font->cached_serial = font->serial;
|
2009-11-04 00:34:20 +01:00
|
|
|
}
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2022-06-01 13:19:23 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_hb_font_changed:
|
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
*
|
|
|
|
* Refreshes the state of the underlying FT_Face of @font when the hb_font_t
|
|
|
|
* @font has changed.
|
|
|
|
* This function should be called after changing the size or
|
|
|
|
* variation-axis settings on the @font.
|
|
|
|
* This call is fast if nothing has changed on @font.
|
|
|
|
*
|
|
|
|
* Return value: true if changed, false otherwise
|
|
|
|
*
|
2022-06-27 20:51:16 +02:00
|
|
|
* Since: 4.4.0
|
2022-06-01 13:19:23 +02:00
|
|
|
**/
|
|
|
|
hb_bool_t
|
|
|
|
hb_ft_hb_font_changed (hb_font_t *font)
|
|
|
|
{
|
|
|
|
if (font->destroy != (hb_destroy_func_t) _hb_ft_font_destroy)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
hb_ft_font_t *ft_font = (hb_ft_font_t *) font->user_data;
|
|
|
|
|
|
|
|
return _hb_ft_hb_font_check_changed (font, ft_font);
|
|
|
|
}
|
|
|
|
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
/**
|
|
|
|
* hb_ft_font_create_referenced:
|
2019-05-20 18:37:56 +02:00
|
|
|
* @ft_face: FT_Face to work upon
|
|
|
|
*
|
|
|
|
* Creates an #hb_font_t font object from the specified FT_Face.
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* <note>Note: You must set the face size on @ft_face before calling
|
2020-12-26 23:53:23 +01:00
|
|
|
* hb_ft_font_create_referenced() on it. HarfBuzz assumes size is always set
|
|
|
|
* and will access `size` member of FT_Face unconditionally.</note>
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* This is the preferred variant of the hb_ft_font_create*
|
|
|
|
* function family, because it calls FT_Reference_Face() on @ft_face,
|
|
|
|
* ensuring that @ft_face remains alive as long as the resulting
|
|
|
|
* #hb_font_t font object remains alive.
|
|
|
|
*
|
|
|
|
* Use this version unless you know you have good reasons not to.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): the new #hb_font_t font object
|
2018-03-30 02:30:28 +02:00
|
|
|
*
|
2015-06-01 13:22:01 +02:00
|
|
|
* Since: 0.9.38
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
**/
|
|
|
|
hb_font_t *
|
|
|
|
hb_ft_font_create_referenced (FT_Face ft_face)
|
|
|
|
{
|
|
|
|
FT_Reference_Face (ft_face);
|
2017-10-11 15:51:31 +02:00
|
|
|
return hb_ft_font_create (ft_face, _hb_ft_face_destroy);
|
[ft] Add hb_ft_face_create_referenced() and hb_ft_font_create_referenced()
When I originally wrote hb-ft, FreeType objects did not support reference
counting. As such, hb_ft_face_create() and hb_ft_font_create() had a
"destroy" callback and client was responsible for making sure FT_Face is
kept around as long as the hb-font/face are alive.
However, since this was not clearly documented, some clienets didn't
correctly did that. In particular, some clients assumed that it's safe
to destroy FT_Face and then hb_face_t. This, indeed, used to work, until
45fd9424c723f115ca98995b8f8a25185a6fc71d, which make face destroy access
font tables.
Now, I fixed that issue in 395b35903e052aecc97d0807e4f813c64c0d2b0b since
the access was not needed, but the problem remains that not all clients
handle this correctly. See:
https://bugs.freedesktop.org/show_bug.cgi?id=86300
Fortunately, FT_Reference_Face() was added to FreeType in 2010, and so we
can use it now. Originally I wanted to change hb_ft_face_create() and
hb_ft_font_create() to reference the face if destroy==NULL was passed in.
That would improve pretty much all clients, with little undesired effects.
Except that FreeType itself, when compiled with HarfBuzz support, calls
hb_ft_font_create() with destroy==NULL and saves the resulting hb-font on
the ft-face (why does it not free it immediately?). Making hb-face
reference ft-face causes a cycling reference there. At least, that's my
current understanding.
At any rate, a cleaner approach, even if it means all clients will need a
change, is to introduce brand new API. Which this commit does.
Some comments added to hb-ft.h, hoping to make future clients make better
choices.
Fixes https://bugs.freedesktop.org/show_bug.cgi?id=75299
2014-12-29 02:44:26 +01:00
|
|
|
}
|
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
static inline void free_static_ft_library ();
|
2012-06-06 01:23:29 +02:00
|
|
|
|
2019-04-16 22:45:53 +02:00
|
|
|
static struct hb_ft_library_lazy_loader_t : hb_lazy_loader_t<hb_remove_pointer<FT_Library>,
|
2018-08-13 01:57:06 +02:00
|
|
|
hb_ft_library_lazy_loader_t>
|
2018-08-13 01:20:11 +02:00
|
|
|
{
|
2018-12-17 19:01:01 +01:00
|
|
|
static FT_Library create ()
|
2018-08-13 01:20:11 +02:00
|
|
|
{
|
|
|
|
FT_Library l;
|
|
|
|
if (FT_Init_FreeType (&l))
|
|
|
|
return nullptr;
|
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
hb_atexit (free_static_ft_library);
|
2018-08-13 01:20:11 +02:00
|
|
|
|
|
|
|
return l;
|
|
|
|
}
|
2018-12-16 20:08:10 +01:00
|
|
|
static void destroy (FT_Library l)
|
2018-08-13 01:20:11 +02:00
|
|
|
{
|
|
|
|
FT_Done_FreeType (l);
|
|
|
|
}
|
2018-12-17 19:01:01 +01:00
|
|
|
static FT_Library get_null ()
|
2018-08-13 01:20:11 +02:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
} static_ft_library;
|
2012-06-06 00:30:19 +02:00
|
|
|
|
2021-09-14 13:09:54 +02:00
|
|
|
static inline
|
2018-12-17 19:01:01 +01:00
|
|
|
void free_static_ft_library ()
|
2012-06-06 00:30:19 +02:00
|
|
|
{
|
2018-08-13 02:19:55 +02:00
|
|
|
static_ft_library.free_instance ();
|
2012-06-06 00:30:19 +02:00
|
|
|
}
|
|
|
|
|
2011-08-09 10:51:24 +02:00
|
|
|
static FT_Library
|
2018-12-17 19:01:01 +01:00
|
|
|
get_ft_library ()
|
2011-08-09 10:51:24 +02:00
|
|
|
{
|
2018-08-13 01:20:11 +02:00
|
|
|
return static_ft_library.get_unconst ();
|
2011-08-09 10:51:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-10-28 21:17:15 +02:00
|
|
|
_release_blob (void *arg)
|
2011-08-09 10:51:24 +02:00
|
|
|
{
|
2022-10-28 21:17:15 +02:00
|
|
|
FT_Face ft_face = (FT_Face) arg;
|
2011-08-09 10:51:24 +02:00
|
|
|
hb_blob_destroy ((hb_blob_t *) ft_face->generic.data);
|
|
|
|
}
|
|
|
|
|
2019-05-20 18:37:56 +02:00
|
|
|
/**
|
|
|
|
* hb_ft_font_set_funcs:
|
|
|
|
* @font: #hb_font_t to work upon
|
|
|
|
*
|
|
|
|
* Configures the font-functions structure of the specified
|
|
|
|
* #hb_font_t font object to use FreeType font functions.
|
|
|
|
*
|
2020-04-15 19:30:47 +02:00
|
|
|
* In particular, you can use this function to configure an
|
|
|
|
* existing #hb_face_t face object for use with FreeType font
|
|
|
|
* functions even if that #hb_face_t face object was initially
|
|
|
|
* created with hb_face_create(), and therefore was not
|
|
|
|
* initially configured to use FreeType font functions.
|
|
|
|
*
|
2022-12-28 19:07:54 +01:00
|
|
|
* An #hb_font_t object created with hb_ft_font_create()
|
2020-04-15 19:30:47 +02:00
|
|
|
* is preconfigured for FreeType font functions and does not
|
|
|
|
* require this function to be used.
|
|
|
|
*
|
2023-01-10 21:13:43 +01:00
|
|
|
* Note that if you modify the underlying #hb_font_t after
|
|
|
|
* calling this function, you need to call hb_ft_hb_font_changed()
|
|
|
|
* to update the underlying FT_Face.
|
|
|
|
*
|
2019-05-20 18:37:56 +02:00
|
|
|
* <note>Note: Internally, this function creates an FT_Face.
|
2020-04-15 19:30:47 +02:00
|
|
|
* </note>
|
2019-05-20 18:37:56 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0.5
|
|
|
|
**/
|
2011-08-09 10:51:24 +02:00
|
|
|
void
|
|
|
|
hb_ft_font_set_funcs (hb_font_t *font)
|
|
|
|
{
|
|
|
|
hb_blob_t *blob = hb_face_reference_blob (font->face);
|
|
|
|
unsigned int blob_length;
|
|
|
|
const char *blob_data = hb_blob_get_data (blob, &blob_length);
|
|
|
|
if (unlikely (!blob_length))
|
|
|
|
DEBUG_MSG (FT, font, "Font face has empty blob");
|
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
FT_Face ft_face = nullptr;
|
2012-06-06 00:30:19 +02:00
|
|
|
FT_Error err = FT_New_Memory_Face (get_ft_library (),
|
2011-08-09 10:51:24 +02:00
|
|
|
(const FT_Byte *) blob_data,
|
|
|
|
blob_length,
|
|
|
|
hb_face_get_index (font->face),
|
|
|
|
&ft_face);
|
|
|
|
|
|
|
|
if (unlikely (err)) {
|
|
|
|
hb_blob_destroy (blob);
|
|
|
|
DEBUG_MSG (FT, font, "Font face FT_New_Memory_Face() failed");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-01 17:09:08 +02:00
|
|
|
if (FT_Select_Charmap (ft_face, FT_ENCODING_MS_SYMBOL))
|
|
|
|
FT_Select_Charmap (ft_face, FT_ENCODING_UNICODE);
|
2011-08-15 16:15:44 +02:00
|
|
|
|
2017-01-22 03:10:08 +01:00
|
|
|
|
2011-08-09 10:51:24 +02:00
|
|
|
ft_face->generic.data = blob;
|
2022-10-28 21:17:15 +02:00
|
|
|
ft_face->generic.finalizer = _release_blob;
|
2011-08-09 10:51:24 +02:00
|
|
|
|
2015-10-07 23:33:20 +02:00
|
|
|
_hb_ft_font_set_funcs (font, ft_face, true);
|
|
|
|
hb_ft_font_set_load_flags (font, FT_LOAD_DEFAULT | FT_LOAD_NO_HINTING);
|
2022-08-19 17:48:12 +02:00
|
|
|
|
|
|
|
_hb_ft_hb_font_changed (font, ft_face);
|
2011-08-10 22:00:35 +02:00
|
|
|
}
|
2019-06-18 07:41:49 +02:00
|
|
|
|
|
|
|
#endif
|