[>64k:layout] Templatize MultipleSubst
This commit is contained in:
parent
8775e9b4a4
commit
684c8fcea7
|
@ -12,8 +12,8 @@ struct MultipleSubst
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
union {
|
union {
|
||||||
HBUINT16 format; /* Format identifier */
|
HBUINT16 format; /* Format identifier */
|
||||||
MultipleSubstFormat1 format1;
|
MultipleSubstFormat1_2<SmallTypes> format1;
|
||||||
} u;
|
} u;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -8,18 +8,19 @@ namespace OT {
|
||||||
namespace Layout {
|
namespace Layout {
|
||||||
namespace GSUB_impl {
|
namespace GSUB_impl {
|
||||||
|
|
||||||
struct MultipleSubstFormat1
|
template <typename Types>
|
||||||
|
struct MultipleSubstFormat1_2
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
HBUINT16 format; /* Format identifier--format = 1 */
|
HBUINT16 format; /* Format identifier--format = 1 */
|
||||||
Offset16To<Coverage>
|
typename Types::template OffsetTo<Coverage>
|
||||||
coverage; /* Offset to Coverage table--from
|
coverage; /* Offset to Coverage table--from
|
||||||
* beginning of Substitution table */
|
* beginning of Substitution table */
|
||||||
Array16OfOffset16To<Sequence>
|
Array16Of<typename Types::template OffsetTo<Sequence<Types>>>
|
||||||
sequence; /* Array of Sequence tables
|
sequence; /* Array of Sequence tables
|
||||||
* ordered by Coverage Index */
|
* ordered by Coverage Index */
|
||||||
public:
|
public:
|
||||||
DEFINE_SIZE_ARRAY (6, sequence);
|
DEFINE_SIZE_ARRAY (4 + Types::size, sequence);
|
||||||
|
|
||||||
bool sanitize (hb_sanitize_context_t *c) const
|
bool sanitize (hb_sanitize_context_t *c) const
|
||||||
{
|
{
|
||||||
|
@ -39,7 +40,7 @@ struct MultipleSubstFormat1
|
||||||
| hb_filter (c->parent_active_glyphs (), hb_first)
|
| hb_filter (c->parent_active_glyphs (), hb_first)
|
||||||
| hb_map (hb_second)
|
| hb_map (hb_second)
|
||||||
| hb_map (hb_add (this))
|
| hb_map (hb_add (this))
|
||||||
| hb_apply ([c] (const Sequence &_) { _.closure (c); })
|
| hb_apply ([c] (const Sequence<Types> &_) { _.closure (c); })
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,7 +52,7 @@ struct MultipleSubstFormat1
|
||||||
+ hb_zip (this+coverage, sequence)
|
+ hb_zip (this+coverage, sequence)
|
||||||
| hb_map (hb_second)
|
| hb_map (hb_second)
|
||||||
| hb_map (hb_add (this))
|
| hb_map (hb_add (this))
|
||||||
| hb_apply ([c] (const Sequence &_) { _.collect_glyphs (c); })
|
| hb_apply ([c] (const Sequence<Types> &_) { _.collect_glyphs (c); })
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,10 +7,11 @@ namespace OT {
|
||||||
namespace Layout {
|
namespace Layout {
|
||||||
namespace GSUB_impl {
|
namespace GSUB_impl {
|
||||||
|
|
||||||
|
template <typename Types>
|
||||||
struct Sequence
|
struct Sequence
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
Array16Of<HBGlyphID16>
|
Array16Of<typename Types::HBGlyphID>
|
||||||
substitute; /* String of GlyphIDs to substitute */
|
substitute; /* String of GlyphIDs to substitute */
|
||||||
public:
|
public:
|
||||||
DEFINE_SIZE_ARRAY (2, substitute);
|
DEFINE_SIZE_ARRAY (2, substitute);
|
||||||
|
|
Loading…
Reference in New Issue