2008-01-23 22:14:38 +01:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2007,2008,2009 Red Hat, Inc.
|
2012-05-11 01:25:34 +02:00
|
|
|
* Copyright © 2010,2011,2012 Google, Inc.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2008-01-23 22:14:38 +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
|
2010-10-27 23:39:01 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2008-01-23 22:14:38 +01:00
|
|
|
*/
|
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#ifndef HB_OT_LAYOUT_GDEF_TABLE_HH
|
|
|
|
#define HB_OT_LAYOUT_GDEF_TABLE_HH
|
2006-12-28 12:42:37 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-ot-layout-common.hh"
|
2006-12-28 12:42:37 +01:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb-font.hh"
|
2009-08-04 03:40:20 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2012-08-28 23:57:49 +02:00
|
|
|
namespace OT {
|
|
|
|
|
2008-01-23 21:50:38 +01:00
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/*
|
|
|
|
* Attachment List Table
|
|
|
|
*/
|
2007-07-06 17:29:21 +02:00
|
|
|
|
2020-02-18 19:02:19 +01:00
|
|
|
/* Array of contour point indices--in increasing numerical order */
|
|
|
|
struct AttachPoint : ArrayOf<HBUINT16>
|
|
|
|
{
|
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
|
|
|
|
return_trace (out->serialize (c->serializer, + iter ()));
|
|
|
|
}
|
|
|
|
};
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct AttachList
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_attach_points (hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *point_count /* IN/OUT */,
|
|
|
|
unsigned int *point_array /* OUT */) const
|
2009-05-26 18:00:28 +02:00
|
|
|
{
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (glyph_id);
|
2009-05-26 18:40:10 +02:00
|
|
|
if (index == NOT_COVERED)
|
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
if (point_count)
|
|
|
|
*point_count = 0;
|
|
|
|
return 0;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
2009-11-04 22:36:14 +01:00
|
|
|
|
2009-05-26 18:24:16 +02:00
|
|
|
const AttachPoint &points = this+attachPoint[index];
|
|
|
|
|
2018-11-25 03:36:57 +01:00
|
|
|
if (point_count)
|
|
|
|
{
|
|
|
|
hb_array_t<const HBUINT16> array = points.sub_array (start_offset, point_count);
|
2018-12-22 00:46:51 +01:00
|
|
|
unsigned int count = array.length;
|
2009-11-04 22:36:14 +01:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
point_array[i] = array[i];
|
|
|
|
}
|
2009-05-26 18:40:10 +02:00
|
|
|
|
2009-11-04 22:36:14 +01:00
|
|
|
return points.len;
|
2009-05-26 18:00:28 +02:00
|
|
|
}
|
2007-07-06 17:29:21 +02:00
|
|
|
|
2020-02-18 19:02:19 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
const hb_set_t &glyphset = *c->plan->glyphset ();
|
|
|
|
const hb_map_t &glyph_map = *c->plan->glyph_map;
|
|
|
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
hb_sorted_vector_t<hb_codepoint_t> new_coverage;
|
|
|
|
+ hb_zip (this+coverage, attachPoint)
|
|
|
|
| hb_filter (glyphset, hb_first)
|
|
|
|
| hb_filter (subset_offset_array (c, out->attachPoint, this), hb_second)
|
|
|
|
| hb_map (hb_first)
|
|
|
|
| hb_map (glyph_map)
|
|
|
|
| hb_sink (new_coverage)
|
|
|
|
;
|
|
|
|
out->coverage.serialize (c->serializer, out)
|
|
|
|
.serialize (c->serializer, new_coverage.iter ());
|
|
|
|
return_trace (bool (new_coverage));
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (coverage.sanitize (c, this) && attachPoint.sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 06:15:51 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table -- from
|
2007-07-06 17:29:21 +02:00
|
|
|
* beginning of AttachList table */
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<AttachPoint>
|
|
|
|
attachPoint; /* Array of AttachPoint tables
|
|
|
|
* in Coverage Index order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, attachPoint);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ligature Caret Table
|
|
|
|
*/
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat1
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
2020-02-14 22:49:44 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->embed (this);
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
2008-01-24 00:02:28 +01:00
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2011-05-11 06:04:15 +02:00
|
|
|
return HB_DIRECTION_IS_HORIZONTAL (direction) ? font->em_scale_x (coordinate) : font->em_scale_y (coordinate);
|
2007-07-06 17:29:21 +02:00
|
|
|
}
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (c->check_struct (this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 caretValueFormat; /* Format identifier--format = 1 */
|
2018-02-26 10:08:00 +01:00
|
|
|
FWORD coordinate; /* X or Y value, in design units */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat2
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
2020-02-14 22:49:44 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->embed (this);
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
2008-01-24 00:02:28 +01:00
|
|
|
|
|
|
|
private:
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction, hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-04-29 09:59:06 +02:00
|
|
|
hb_position_t x, y;
|
2018-11-05 10:01:58 +01:00
|
|
|
font->get_glyph_contour_point_for_origin (glyph_id, caretValuePoint, direction, &x, &y);
|
|
|
|
return HB_DIRECTION_IS_HORIZONTAL (direction) ? x : y;
|
2007-07-06 17:29:21 +02:00
|
|
|
}
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (c->check_struct (this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 caretValueFormat; /* Format identifier--format = 2 */
|
|
|
|
HBUINT16 caretValuePoint; /* Contour point index on glyph */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat3
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_position_t get_caret_value (hb_font_t *font, hb_direction_t direction,
|
|
|
|
const VariationStore &var_store) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-10-27 18:30:46 +02:00
|
|
|
return HB_DIRECTION_IS_HORIZONTAL (direction) ?
|
2019-08-24 15:27:14 +02:00
|
|
|
font->em_scale_x (coordinate) + (this+deviceTable).get_x_delta (font, var_store) :
|
|
|
|
font->em_scale_y (coordinate) + (this+deviceTable).get_y_delta (font, var_store);
|
2008-01-23 06:20:48 +01:00
|
|
|
}
|
|
|
|
|
2020-02-14 22:49:44 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->embed (this);
|
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
return_trace (out->deviceTable.serialize_copy (c->serializer, deviceTable, this, c->serializer->to_bias (out),
|
|
|
|
hb_serialize_context_t::Head, c->plan->layout_variation_idx_map));
|
2020-02-14 22:49:44 +01:00
|
|
|
}
|
2020-05-23 10:08:07 +02:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
void collect_variation_indices (hb_set_t *layout_variation_indices) const
|
|
|
|
{ (this+deviceTable).collect_variation_indices (layout_variation_indices); }
|
2020-02-14 22:49:44 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (c->check_struct (this) && deviceTable.sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 caretValueFormat; /* Format identifier--format = 3 */
|
2018-02-26 10:08:00 +01:00
|
|
|
FWORD coordinate; /* X or Y value, in design units */
|
2009-05-20 06:00:09 +02:00
|
|
|
OffsetTo<Device>
|
|
|
|
deviceTable; /* Offset to Device table for X or Y
|
2007-07-06 17:29:21 +02:00
|
|
|
* value--from beginning of CaretValue
|
|
|
|
* table */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValue
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
hb_position_t get_caret_value (hb_font_t *font,
|
2016-09-10 02:03:11 +02:00
|
|
|
hb_direction_t direction,
|
|
|
|
hb_codepoint_t glyph_id,
|
2016-09-10 09:22:24 +02:00
|
|
|
const VariationStore &var_store) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2016-09-10 02:03:11 +02:00
|
|
|
case 1: return u.format1.get_caret_value (font, direction);
|
2011-05-11 06:02:02 +02:00
|
|
|
case 2: return u.format2.get_caret_value (font, direction, glyph_id);
|
2016-09-10 02:03:11 +02:00
|
|
|
case 3: return u.format3.get_caret_value (font, direction, var_store);
|
2007-07-06 17:29:21 +02:00
|
|
|
default:return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-14 22:49:44 +01:00
|
|
|
template <typename context_t, typename ...Ts>
|
|
|
|
typename context_t::return_t dispatch (context_t *c, Ts&&... ds) const
|
|
|
|
{
|
|
|
|
TRACE_DISPATCH (this, u.format);
|
|
|
|
if (unlikely (!c->may_dispatch (this, &u.format))) return_trace (c->no_dispatch_return_value ());
|
|
|
|
switch (u.format) {
|
|
|
|
case 1: return_trace (c->dispatch (u.format1, hb_forward<Ts> (ds)...));
|
|
|
|
case 2: return_trace (c->dispatch (u.format2, hb_forward<Ts> (ds)...));
|
|
|
|
case 3: return_trace (c->dispatch (u.format3, hb_forward<Ts> (ds)...));
|
|
|
|
default:return_trace (c->default_return_value ());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
void collect_variation_indices (hb_set_t *layout_variation_indices) const
|
|
|
|
{
|
|
|
|
switch (u.format) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
return;
|
|
|
|
case 3:
|
|
|
|
u.format3.collect_variation_indices (layout_variation_indices);
|
|
|
|
return;
|
|
|
|
default: return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (!u.format.sanitize (c)) return_trace (false);
|
2009-08-04 20:33:23 +02:00
|
|
|
switch (u.format) {
|
2015-09-29 15:57:02 +02:00
|
|
|
case 1: return_trace (u.format1.sanitize (c));
|
|
|
|
case 2: return_trace (u.format2.sanitize (c));
|
|
|
|
case 3: return_trace (u.format3.sanitize (c));
|
|
|
|
default:return_trace (true);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2007-07-06 17:29:21 +02:00
|
|
|
union {
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
CaretValueFormat1 format1;
|
|
|
|
CaretValueFormat2 format2;
|
|
|
|
CaretValueFormat3 format3;
|
2007-07-06 17:29:21 +02:00
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
2008-01-23 10:36:40 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct LigGlyph
|
|
|
|
{
|
2020-05-23 10:08:07 +02:00
|
|
|
unsigned get_lig_carets (hb_font_t *font,
|
|
|
|
hb_direction_t direction,
|
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
const VariationStore &var_store,
|
|
|
|
unsigned start_offset,
|
|
|
|
unsigned *caret_count /* IN/OUT */,
|
|
|
|
hb_position_t *caret_array /* OUT */) const
|
2009-05-26 18:40:10 +02:00
|
|
|
{
|
2018-11-25 03:36:57 +01:00
|
|
|
if (caret_count)
|
|
|
|
{
|
2020-05-23 10:08:07 +02:00
|
|
|
+ carets.sub_array (start_offset, caret_count)
|
|
|
|
| hb_map (hb_add (this))
|
|
|
|
| hb_map ([&] (const CaretValue &value) { return value.get_caret_value (font, direction, glyph_id, var_store); })
|
|
|
|
| hb_sink (hb_array (caret_array, *caret_count))
|
|
|
|
;
|
2009-11-04 22:36:14 +01:00
|
|
|
}
|
2009-05-26 18:40:10 +02:00
|
|
|
|
2009-11-04 22:36:14 +01:00
|
|
|
return carets.len;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
2008-01-24 00:02:28 +01:00
|
|
|
|
2020-02-14 22:49:44 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
+ hb_iter (carets)
|
2020-03-07 20:02:36 +01:00
|
|
|
| hb_apply (subset_offset_array (c, out->carets, this))
|
2020-02-14 22:49:44 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
return_trace (bool (out->carets));
|
|
|
|
}
|
2020-05-23 10:08:07 +02:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
void collect_variation_indices (hb_collect_variation_indices_context_t *c) const
|
|
|
|
{
|
|
|
|
for (const OffsetTo<CaretValue>& offset : carets.iter ())
|
|
|
|
(this+offset).collect_variation_indices (c->layout_variation_indices);
|
|
|
|
}
|
2020-02-14 22:49:44 +01:00
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (carets.sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<CaretValue>
|
2009-08-15 00:32:56 +02:00
|
|
|
carets; /* Offset array of CaretValue tables
|
2009-05-23 00:54:24 +02:00
|
|
|
* --from beginning of LigGlyph table
|
|
|
|
* --in increasing coordinate order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, carets);
|
2008-01-23 10:36:40 +01:00
|
|
|
};
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct LigCaretList
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_lig_carets (hb_font_t *font,
|
|
|
|
hb_direction_t direction,
|
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
const VariationStore &var_store,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *caret_count /* IN/OUT */,
|
|
|
|
hb_position_t *caret_array /* OUT */) const
|
2009-05-26 18:00:28 +02:00
|
|
|
{
|
2012-11-25 01:13:55 +01:00
|
|
|
unsigned int index = (this+coverage).get_coverage (glyph_id);
|
2009-05-26 18:40:10 +02:00
|
|
|
if (index == NOT_COVERED)
|
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
if (caret_count)
|
|
|
|
*caret_count = 0;
|
|
|
|
return 0;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
|
|
|
const LigGlyph &lig_glyph = this+ligGlyph[index];
|
2016-09-10 02:03:11 +02:00
|
|
|
return lig_glyph.get_lig_carets (font, direction, glyph_id, var_store, start_offset, caret_count, caret_array);
|
2009-05-26 18:00:28 +02:00
|
|
|
}
|
2008-01-23 21:50:38 +01:00
|
|
|
|
2020-02-14 22:49:44 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
const hb_set_t &glyphset = *c->plan->glyphset ();
|
|
|
|
const hb_map_t &glyph_map = *c->plan->glyph_map;
|
|
|
|
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
|
|
|
|
hb_sorted_vector_t<hb_codepoint_t> new_coverage;
|
|
|
|
+ hb_zip (this+coverage, ligGlyph)
|
|
|
|
| hb_filter (glyphset, hb_first)
|
2020-03-07 20:02:36 +01:00
|
|
|
| hb_filter (subset_offset_array (c, out->ligGlyph, this), hb_second)
|
2020-02-14 22:49:44 +01:00
|
|
|
| hb_map (hb_first)
|
|
|
|
| hb_map (glyph_map)
|
|
|
|
| hb_sink (new_coverage)
|
|
|
|
;
|
|
|
|
out->coverage.serialize (c->serializer, out)
|
|
|
|
.serialize (c->serializer, new_coverage.iter ());
|
|
|
|
return_trace (bool (new_coverage));
|
|
|
|
}
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
void collect_variation_indices (hb_collect_variation_indices_context_t *c) const
|
|
|
|
{
|
|
|
|
+ hb_zip (this+coverage, ligGlyph)
|
|
|
|
| hb_filter (c->glyph_set, hb_first)
|
|
|
|
| hb_map (hb_second)
|
|
|
|
| hb_map (hb_add (this))
|
|
|
|
| hb_apply ([c] (const LigGlyph& _) { _.collect_variation_indices (c); })
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (coverage.sanitize (c, this) && ligGlyph.sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-17 06:15:51 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 21:50:38 +01:00
|
|
|
* beginning of LigCaretList table */
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<LigGlyph>
|
|
|
|
ligGlyph; /* Array of LigGlyph tables
|
|
|
|
* in Coverage Index order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, ligGlyph);
|
2008-01-23 21:50:38 +01:00
|
|
|
};
|
|
|
|
|
2009-05-26 21:38:53 +02:00
|
|
|
|
|
|
|
struct MarkGlyphSetsFormat1
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
2009-05-26 21:38:53 +02:00
|
|
|
{ return (this+coverage[set_index]).get_coverage (glyph_id) != NOT_COVERED; }
|
|
|
|
|
2020-02-11 22:05:40 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
auto *out = c->serializer->start_embed (*this);
|
|
|
|
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
|
|
|
out->format = format;
|
|
|
|
|
|
|
|
bool ret = true;
|
|
|
|
for (const LOffsetTo<Coverage>& offset : coverage.iter ())
|
|
|
|
{
|
|
|
|
auto *o = out->coverage.serialize_append (c->serializer);
|
|
|
|
if (unlikely (!o))
|
|
|
|
{
|
2020-04-20 11:42:45 +02:00
|
|
|
ret = false;
|
|
|
|
break;
|
2020-02-11 22:05:40 +01:00
|
|
|
}
|
2020-03-10 08:12:20 +01:00
|
|
|
|
2020-02-11 22:05:40 +01:00
|
|
|
//not using o->serialize_subset (c, offset, this, out) here because
|
|
|
|
//OTS doesn't allow null offset.
|
|
|
|
//See issue: https://github.com/khaledhosny/ots/issues/172
|
|
|
|
c->serializer->push ();
|
|
|
|
c->dispatch (this+offset);
|
2020-03-07 20:02:36 +01:00
|
|
|
c->serializer->add_link (*o, c->serializer->pop_pack ());
|
2020-02-11 22:05:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return_trace (ret && out->coverage.len);
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
return_trace (coverage.sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 format; /* Format identifier--format = 1 */
|
2019-04-30 22:05:10 +02:00
|
|
|
ArrayOf<LOffsetTo<Coverage>>
|
2009-05-26 21:38:53 +02:00
|
|
|
coverage; /* Array of long offsets to mark set
|
|
|
|
* coverage tables */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, coverage);
|
2009-05-26 21:38:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MarkGlyphSets
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
2009-05-26 21:38:53 +02:00
|
|
|
{
|
|
|
|
switch (u.format) {
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.format1.covers (set_index, glyph_id);
|
2009-05-26 21:38:53 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 22:05:40 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
|
|
|
switch (u.format) {
|
|
|
|
case 1: return_trace (u.format1.subset (c));
|
|
|
|
default:return_trace (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2015-02-17 15:27:44 +01:00
|
|
|
{
|
2012-11-23 21:32:14 +01:00
|
|
|
TRACE_SANITIZE (this);
|
2015-09-29 15:57:02 +02:00
|
|
|
if (!u.format.sanitize (c)) return_trace (false);
|
2009-08-04 20:33:23 +02:00
|
|
|
switch (u.format) {
|
2015-09-29 15:57:02 +02:00
|
|
|
case 1: return_trace (u.format1.sanitize (c));
|
|
|
|
default:return_trace (true);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2009-05-26 21:38:53 +02:00
|
|
|
union {
|
2018-01-10 03:07:30 +01:00
|
|
|
HBUINT16 format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
MarkGlyphSetsFormat1 format1;
|
2009-05-26 21:38:53 +02:00
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2009-05-26 21:38:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/*
|
2018-04-12 11:08:19 +02:00
|
|
|
* GDEF -- Glyph Definition
|
|
|
|
* https://docs.microsoft.com/en-us/typography/opentype/spec/gdef
|
2008-01-23 10:36:40 +01:00
|
|
|
*/
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2018-08-26 10:25:54 +02:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct GDEF
|
|
|
|
{
|
2019-01-22 12:08:57 +01:00
|
|
|
static constexpr hb_tag_t tableTag = HB_OT_TAG_GDEF;
|
2008-01-23 08:01:37 +01:00
|
|
|
|
2012-04-12 19:23:59 +02:00
|
|
|
enum GlyphClasses {
|
2009-05-19 00:44:54 +02:00
|
|
|
UnclassifiedGlyph = 0,
|
|
|
|
BaseGlyph = 1,
|
|
|
|
LigatureGlyph = 2,
|
|
|
|
MarkGlyph = 3,
|
2009-08-18 22:41:59 +02:00
|
|
|
ComponentGlyph = 4
|
2009-05-19 00:44:54 +02:00
|
|
|
};
|
2008-01-24 12:03:45 +01:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_data () const { return version.to_int (); }
|
|
|
|
bool has_glyph_classes () const { return glyphClassDef != 0; }
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_glyph_class (hb_codepoint_t glyph) const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return (this+glyphClassDef).get_class (glyph); }
|
2018-12-16 20:08:10 +01:00
|
|
|
void get_glyphs_in_class (unsigned int klass, hb_set_t *glyphs) const
|
2020-04-23 19:57:30 +02:00
|
|
|
{ (this+glyphClassDef).collect_class (glyphs, klass); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_mark_attachment_types () const { return markAttachClassDef != 0; }
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_mark_attachment_type (hb_codepoint_t glyph) const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return (this+markAttachClassDef).get_class (glyph); }
|
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_attach_points () const { return attachList != 0; }
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_attach_points (hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *point_count /* IN/OUT */,
|
|
|
|
unsigned int *point_array /* OUT */) const
|
2009-11-04 22:36:14 +01:00
|
|
|
{ return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_lig_carets () const { return ligCaretList != 0; }
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_lig_carets (hb_font_t *font,
|
|
|
|
hb_direction_t direction,
|
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *caret_count /* IN/OUT */,
|
|
|
|
hb_position_t *caret_array /* OUT */) const
|
2016-09-10 02:03:11 +02:00
|
|
|
{ return (this+ligCaretList).get_lig_carets (font,
|
|
|
|
direction, glyph_id, get_var_store(),
|
|
|
|
start_offset, caret_count, caret_array); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_mark_sets () const { return version.to_int () >= 0x00010002u && markGlyphSetsDef != 0; }
|
2018-12-16 20:08:10 +01:00
|
|
|
bool mark_set_covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
2016-09-10 01:05:17 +02:00
|
|
|
{ return version.to_int () >= 0x00010002u && (this+markGlyphSetsDef).covers (set_index, glyph_id); }
|
2009-05-26 21:38:53 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
bool has_var_store () const { return version.to_int () >= 0x00010003u && varStore != 0; }
|
|
|
|
const VariationStore &get_var_store () const
|
2020-04-20 11:42:45 +02:00
|
|
|
{ return version.to_int () >= 0x00010003u ? this+varStore : Null (VariationStore); }
|
2016-09-10 01:22:45 +02:00
|
|
|
|
2010-10-28 04:37:59 +02:00
|
|
|
/* glyph_props is a 16-bit integer where the lower 8-bit have bits representing
|
2018-10-19 17:49:21 +02:00
|
|
|
* glyph class and other bits, and high 8-bit the mark attachment type (if any).
|
2010-10-28 04:37:59 +02:00
|
|
|
* Not to be confused with lookup_props which is very similar. */
|
2018-12-16 20:08:10 +01:00
|
|
|
unsigned int get_glyph_props (hb_codepoint_t glyph) const
|
2010-10-28 04:37:59 +02:00
|
|
|
{
|
|
|
|
unsigned int klass = get_glyph_class (glyph);
|
|
|
|
|
2018-09-16 19:33:48 +02:00
|
|
|
static_assert (((unsigned int) HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH == (unsigned int) LookupFlag::IgnoreBaseGlyphs), "");
|
|
|
|
static_assert (((unsigned int) HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE == (unsigned int) LookupFlag::IgnoreLigatures), "");
|
|
|
|
static_assert (((unsigned int) HB_OT_LAYOUT_GLYPH_PROPS_MARK == (unsigned int) LookupFlag::IgnoreMarks), "");
|
2013-10-17 20:47:33 +02:00
|
|
|
|
2010-10-28 04:37:59 +02:00
|
|
|
switch (klass) {
|
2013-10-17 20:47:33 +02:00
|
|
|
default: return 0;
|
2012-11-16 22:34:29 +01:00
|
|
|
case BaseGlyph: return HB_OT_LAYOUT_GLYPH_PROPS_BASE_GLYPH;
|
|
|
|
case LigatureGlyph: return HB_OT_LAYOUT_GLYPH_PROPS_LIGATURE;
|
2010-10-28 04:37:59 +02:00
|
|
|
case MarkGlyph:
|
|
|
|
klass = get_mark_attachment_type (glyph);
|
2012-11-16 22:34:29 +01:00
|
|
|
return HB_OT_LAYOUT_GLYPH_PROPS_MARK | (klass << 8);
|
2010-10-28 04:37:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-05 21:57:23 +02:00
|
|
|
HB_INTERNAL bool is_blocklisted (hb_blob_t *blob,
|
2018-11-25 21:59:18 +01:00
|
|
|
hb_face_t *face) const;
|
|
|
|
|
2018-08-26 10:25:54 +02:00
|
|
|
struct accelerator_t
|
|
|
|
{
|
2018-12-16 20:08:10 +01:00
|
|
|
void init (hb_face_t *face)
|
2018-11-25 22:38:36 +01:00
|
|
|
{
|
2020-03-10 08:12:20 +01:00
|
|
|
this->table = hb_sanitize_context_t ().reference_table<GDEF> (face);
|
2020-06-05 21:57:23 +02:00
|
|
|
if (unlikely (this->table->is_blocklisted (this->table.get_blob (), face)))
|
2018-11-25 22:38:36 +01:00
|
|
|
{
|
|
|
|
hb_blob_destroy (this->table.get_blob ());
|
|
|
|
this->table = hb_blob_get_empty ();
|
|
|
|
}
|
|
|
|
}
|
2018-08-26 10:25:54 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
void fini () { this->table.destroy (); }
|
2018-08-26 10:25:54 +02:00
|
|
|
|
2018-11-11 05:52:15 +01:00
|
|
|
hb_blob_ptr_t<GDEF> table;
|
2018-08-26 10:25:54 +02:00
|
|
|
};
|
2010-10-28 04:37:59 +02:00
|
|
|
|
2018-12-17 19:01:01 +01:00
|
|
|
unsigned int get_size () const
|
2018-09-02 03:34:50 +02:00
|
|
|
{
|
|
|
|
return min_size +
|
|
|
|
(version.to_int () >= 0x00010002u ? markGlyphSetsDef.static_size : 0) +
|
|
|
|
(version.to_int () >= 0x00010003u ? varStore.static_size : 0);
|
|
|
|
}
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
void collect_variation_indices (hb_collect_variation_indices_context_t *c) const
|
|
|
|
{ (this+ligCaretList).collect_variation_indices (c); }
|
|
|
|
|
|
|
|
void remap_layout_variation_indices (const hb_set_t *layout_variation_indices,
|
|
|
|
hb_map_t *layout_variation_idx_map /* OUT */) const
|
|
|
|
{
|
|
|
|
if (version.to_int () < 0x00010003u || !varStore) return;
|
|
|
|
if (layout_variation_indices->is_empty ()) return;
|
2020-05-23 10:08:07 +02:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
unsigned new_major = 0, new_minor = 0;
|
|
|
|
unsigned last_major = (layout_variation_indices->get_min ()) >> 16;
|
|
|
|
for (unsigned idx : layout_variation_indices->iter ())
|
|
|
|
{
|
|
|
|
uint16_t major = idx >> 16;
|
|
|
|
if (major >= (this+varStore).get_sub_table_count ()) break;
|
|
|
|
if (major != last_major)
|
|
|
|
{
|
|
|
|
new_minor = 0;
|
|
|
|
++new_major;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned new_idx = (new_major << 16) + new_minor;
|
|
|
|
layout_variation_idx_map->set (idx, new_idx);
|
|
|
|
++new_minor;
|
|
|
|
last_major = major;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool subset (hb_subset_context_t *c) const
|
2018-12-14 00:10:48 +01:00
|
|
|
{
|
|
|
|
TRACE_SUBSET (this);
|
2019-05-11 01:35:31 +02:00
|
|
|
auto *out = c->serializer->embed (*this);
|
2018-12-14 00:10:48 +01:00
|
|
|
if (unlikely (!out)) return_trace (false);
|
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
bool subset_glyphclassdef = out->glyphClassDef.serialize_subset (c, glyphClassDef, this);
|
2020-02-18 19:02:19 +01:00
|
|
|
bool subset_attachlist = out->attachList.serialize_subset (c, attachList, this);
|
2020-02-26 22:11:42 +01:00
|
|
|
bool subset_ligcaretlist = out->ligCaretList.serialize_subset (c, ligCaretList, this);
|
|
|
|
bool subset_markattachclassdef = out->markAttachClassDef.serialize_subset (c, markAttachClassDef, this);
|
2018-12-14 00:10:48 +01:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
bool subset_markglyphsetsdef = true;
|
2018-12-14 00:10:48 +01:00
|
|
|
if (version.to_int () >= 0x00010002u)
|
2020-02-11 22:05:40 +01:00
|
|
|
{
|
2020-02-26 22:11:42 +01:00
|
|
|
subset_markglyphsetsdef = out->markGlyphSetsDef.serialize_subset (c, markGlyphSetsDef, this);
|
|
|
|
if (!subset_markglyphsetsdef &&
|
|
|
|
version.to_int () == 0x00010002u)
|
|
|
|
out->version.minor = 0;
|
2020-02-11 22:05:40 +01:00
|
|
|
}
|
2018-12-14 00:10:48 +01:00
|
|
|
|
2020-02-26 22:11:42 +01:00
|
|
|
bool subset_varstore = true;
|
2018-12-14 00:10:48 +01:00
|
|
|
if (version.to_int () >= 0x00010003u)
|
2020-02-26 22:11:42 +01:00
|
|
|
{
|
|
|
|
subset_varstore = out->varStore.serialize_subset (c, varStore, this);
|
|
|
|
if (!subset_varstore && version.to_int () == 0x00010003u)
|
|
|
|
out->version.minor = 2;
|
|
|
|
}
|
2018-12-14 00:10:48 +01:00
|
|
|
|
2020-02-18 19:02:19 +01:00
|
|
|
return_trace (subset_glyphclassdef || subset_attachlist ||
|
|
|
|
subset_ligcaretlist || subset_markattachclassdef ||
|
2020-02-26 22:11:42 +01:00
|
|
|
(out->version.to_int () >= 0x00010002u && subset_markglyphsetsdef) ||
|
|
|
|
(out->version.to_int () >= 0x00010003u && subset_varstore));
|
2018-12-14 00:10:48 +01:00
|
|
|
}
|
|
|
|
|
2018-12-16 20:08:10 +01:00
|
|
|
bool sanitize (hb_sanitize_context_t *c) const
|
2018-09-02 03:34:50 +02:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (version.sanitize (c) &&
|
|
|
|
likely (version.major == 1) &&
|
|
|
|
glyphClassDef.sanitize (c, this) &&
|
|
|
|
attachList.sanitize (c, this) &&
|
|
|
|
ligCaretList.sanitize (c, this) &&
|
|
|
|
markAttachClassDef.sanitize (c, this) &&
|
|
|
|
(version.to_int () < 0x00010002u || markGlyphSetsDef.sanitize (c, this)) &&
|
|
|
|
(version.to_int () < 0x00010003u || varStore.sanitize (c, this)));
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:40:37 +02:00
|
|
|
protected:
|
2016-02-22 03:44:45 +01:00
|
|
|
FixedVersion<>version; /* Version of the GDEF table--currently
|
2016-09-10 01:22:45 +02:00
|
|
|
* 0x00010003u */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
glyphClassDef; /* Offset to class definition table
|
2008-01-23 07:38:10 +01:00
|
|
|
* for glyph type--from beginning of
|
2008-01-23 10:36:40 +01:00
|
|
|
* GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<AttachList>
|
|
|
|
attachList; /* Offset to list of glyphs with
|
2008-01-23 07:38:10 +01:00
|
|
|
* attachment points--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<LigCaretList>
|
|
|
|
ligCaretList; /* Offset to list of positioning points
|
2008-01-23 07:38:10 +01:00
|
|
|
* for ligature carets--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
markAttachClassDef; /* Offset to class definition table for
|
2008-01-23 07:38:10 +01:00
|
|
|
* mark attachment type--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-26 21:38:53 +02:00
|
|
|
OffsetTo<MarkGlyphSets>
|
2016-09-10 01:05:17 +02:00
|
|
|
markGlyphSetsDef; /* Offset to the table of mark set
|
2009-05-26 21:38:53 +02:00
|
|
|
* definitions--from beginning of GDEF
|
|
|
|
* header (may be NULL). Introduced
|
2016-09-10 01:22:45 +02:00
|
|
|
* in version 0x00010002. */
|
2017-01-23 05:28:56 +01:00
|
|
|
LOffsetTo<VariationStore>
|
2016-09-10 01:22:45 +02:00
|
|
|
varStore; /* Offset to the table of Item Variation
|
|
|
|
* Store--from beginning of GDEF
|
|
|
|
* header (may be NULL). Introduced
|
|
|
|
* in version 0x00010003. */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2016-09-10 01:05:17 +02:00
|
|
|
DEFINE_SIZE_MIN (12);
|
2008-01-23 07:38:10 +01:00
|
|
|
};
|
|
|
|
|
2018-08-27 00:11:24 +02:00
|
|
|
struct GDEF_accelerator_t : GDEF::accelerator_t {};
|
2009-05-18 02:28:01 +02:00
|
|
|
|
2012-11-17 03:49:54 +01:00
|
|
|
} /* namespace OT */
|
2012-08-28 23:57:49 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2011-08-17 14:19:59 +02:00
|
|
|
#endif /* HB_OT_LAYOUT_GDEF_TABLE_HH */
|