diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 6655259b7..ced82a2f6 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -1879,6 +1879,15 @@ struct TupleList : CFF2Index } }; +struct FloatTupleList : CFF2Index +{ + hb_array_t operator [] (unsigned i) const + { + auto bytes = CFF2Index::operator [] (i); + return hb_array ((const float *) bytes.arrayZ, bytes.length / sizeof (float)); + } +}; + } /* namespace OT */ diff --git a/src/hb-ot-layout-common.hh b/src/hb-ot-layout-common.hh index 757b05031..90e95f70b 100644 --- a/src/hb-ot-layout-common.hh +++ b/src/hb-ot-layout-common.hh @@ -3129,13 +3129,14 @@ struct MultiVarData + StructAfter (regionIndices).get_size (); } - void get_delta (unsigned int inner, - const int *coords, unsigned int coord_count, - const SparseVarRegionList ®ions, - hb_array_t out, - SparseVarRegionList::cache_t *cache = nullptr) const + template + void get_delta_for_type (unsigned int inner, + const int *coords, unsigned int coord_count, + const SparseVarRegionList ®ions, + hb_array_t out, + SparseVarRegionList::cache_t *cache = nullptr) const { - auto &deltaSets = StructAfter (regionIndices); + auto &deltaSets = StructAfter (regionIndices); auto values_iter = deltaSets[inner]; @@ -3157,23 +3158,42 @@ struct MultiVarData } } + void get_delta (unsigned int inner, + const int *coords, unsigned int coord_count, + const SparseVarRegionList ®ions, + hb_array_t out, + SparseVarRegionList::cache_t *cache = nullptr) const + { + switch (format) + { + case 1: hb_barrier (); get_delta_for_type (inner, coords, coord_count, regions, out, cache); break; + case 2: hb_barrier (); get_delta_for_type (inner, coords, coord_count, regions, out, cache); break; + default: break; + } + } + bool sanitize (hb_sanitize_context_t *c) const { TRACE_SANITIZE (this); return_trace (format.sanitize (c) && hb_barrier () && - format == 1 && + (format == 1 || format == 2) && regionIndices.sanitize (c) && hb_barrier () && - StructAfter (regionIndices).sanitize (c)); + ((format == 1 && StructAfter (regionIndices).sanitize (c)) || + (format == 2 && StructAfter (regionIndices).sanitize (c)))); } protected: - HBUINT8 format; // 1 + HBUINT8 format; // 1 or 2 Array16Of regionIndices; - TupleList deltaSetsX; + union + { + TupleList tupleDeltaSetsX; // Format 1 + FloatTupleList floatDeltaSetsX; // Format 2 + } u; public: - DEFINE_SIZE_MIN (8); + DEFINE_SIZE_MIN (4); }; struct ItemVariationStore