提交 5a48611c 编写于 作者: B Behdad Esfahbod

[config] Add HB_NO_OT_LAYOUT_UNUSED

Part of https://github.com/harfbuzz/harfbuzz/issues/1652
上级 771f1b21
......@@ -44,6 +44,7 @@
#define HB_NO_BITMAP
#define HB_NO_CFF
#define HB_NO_MATH
#define HB_NO_OT_LAYOUT_UNUSED
#endif
#ifdef HB_MINI
......
......@@ -335,6 +335,12 @@ hb_ot_layout_get_attach_points (hb_face_t *face,
unsigned int *point_count /* IN/OUT */,
unsigned int *point_array /* OUT */)
{
#ifdef HB_NO_OT_LAYOUT_UNUSED
if (point_count)
*point_count = 0;
return 0;
#endif
return face->table.GDEF->table->get_attach_points (glyph,
start_offset,
point_count,
......@@ -364,6 +370,12 @@ hb_ot_layout_get_ligature_carets (hb_font_t *font,
unsigned int *caret_count /* IN/OUT */,
hb_position_t *caret_array /* OUT */)
{
#ifdef HB_NO_OT_LAYOUT_UNUSED
if (caret_count)
*caret_count = 0;
return 0;
#endif
unsigned int result_caret_count = 0;
unsigned int result = font->face->table.GDEF->table->get_lig_carets (font, direction, glyph, start_offset, &result_caret_count, caret_array);
if (result)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册