structReadFrom method
Implementation
@override
void structReadFrom(MemoryPointer p) {
_baseSize = field_baseSize.read(p);
_glyphCount = field_glyphCount.read(p);
_glyphPadding = field_glyphPadding.read(p);
_texture = field_texture.read(p);
_recs.readFrom(p, count: glyphCount);
_glyphs.readFrom(p, count: glyphCount);
}