FT_GlyphSlot typedef
@type: FT_GlyphSlot
@description: A handle to a given 'glyph slot'. A slot is a container that can hold any of the glyphs contained in its parent face.
In other words, each time you call @FT_Load_Glyph or @FT_Load_Char, the slot's content is erased by the new glyph data, i.e., the glyph's metrics, its image (bitmap or outline), and other control information.
@also: See @FT_GlyphSlotRec for the publicly accessible glyph fields.
Implementation
typedef FT_GlyphSlot = ffi.Pointer<FT_GlyphSlotRec_>;