diff options
Diffstat (limited to 'drw.h')
| -rw-r--r-- | drw.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -33,7 +33,10 @@ typedef struct { FT_Library library; FT_Face face; FT_Stroker stroke; - FT_BitmapGlyph cache[CACHE_SIZE]; + struct { + FT_BitmapGlyph normal[CACHE_SIZE]; + FT_BitmapGlyph bold[CACHE_SIZE]; + } cache; } Font; enum FontType { |