legacy-imlib2/font.h

26 lines
611 B
C

#ifndef __FONT
#define __FONT 1
typedef struct _imlib_font ImlibFont;
struct _imlib_font
{
char *name;
int references;
ImlibFont *next;
TT_Engine engine;
TT_Face face;
TT_Instance instance;
TT_Face_Properties properties;
int num_glyph;
TT_Glyph *glyphs;
TT_Raster_Map **glyphs_cached_right;
TT_Raster_Map **glyphs_cached_left;
TT_Raster_Map **glyphs_cached_down;
TT_Raster_Map **glyphs_cached_up;
int max_descent;
int max_ascent;
};
#endif