[colr] Use SortedArray instead of Array

This commit is contained in:
Behdad Esfahbod 2022-12-11 13:03:55 -07:00
parent b9d5e7a8bb
commit a306820681
1 changed files with 1 additions and 1 deletions

View File

@ -1052,7 +1052,7 @@ struct ClipList
} }
HBUINT8 format; // Set to 1. HBUINT8 format; // Set to 1.
Array32Of<ClipRecord> clips; // Clip records, sorted by startGlyphID SortedArray32Of<ClipRecord> clips; // Clip records, sorted by startGlyphID
public: public:
DEFINE_SIZE_ARRAY_SIZED (5, clips); DEFINE_SIZE_ARRAY_SIZED (5, clips);
}; };