[colr] Minor

This commit is contained in:
Behdad Esfahbod 2018-10-21 17:41:49 -07:00 committed by Khaled Hosny
parent a6ade3471e
commit b6b171732a
1 changed files with 4 additions and 4 deletions

View File

@ -137,13 +137,13 @@ struct COLR
} }
protected: protected:
HBUINT16 version; /* Table version number */ HBUINT16 version; /* Table version number (starts at 0). */
HBUINT16 numBaseGlyphs; /* Number of Base Glyph Records */ HBUINT16 numBaseGlyphs; /* Number of Base Glyph Records. */
LOffsetTo<UnsizedArrayOf<BaseGlyphRecord>, false> LOffsetTo<UnsizedArrayOf<BaseGlyphRecord>, false>
baseGlyphsZ; /* Offset to Base Glyph records. */ baseGlyphsZ; /* Offset to Base Glyph records. */
LOffsetTo<UnsizedArrayOf<LayerRecord>, false> LOffsetTo<UnsizedArrayOf<LayerRecord>, false>
layersZ; /* Offset to Layer Records */ layersZ; /* Offset to Layer Records. */
HBUINT16 numLayers; /* Number of Layer Records */ HBUINT16 numLayers; /* Number of Layer Records. */
public: public:
DEFINE_SIZE_STATIC (14); DEFINE_SIZE_STATIC (14);
}; };