jp9000 e91f5384b4 text-freetype2: Cache data to reduce load time
This caches the font list data to a file to minimize load times.  Font
data will be refreshed when any font files are added/removed, based upon
a checksum of the font file names and dates (if available).
2015-10-04 21:16:31 -07:00

42 lines
905 B
C

#pragma once
#include <ft2build.h>
#include FT_FREETYPE_H
#include FT_SFNT_NAMES_H
#include FT_TRUETYPE_IDS_H
#include <util/dstr.h>
#include <util/darray.h>
struct font_path_info {
char *face_and_style;
uint32_t full_len;
uint32_t face_len;
bool is_bitmap;
uint32_t num_sizes;
int *sizes;
bool bold;
bool italic;
char *path;
FT_Long index;
};
static inline void font_path_info_free(struct font_path_info *info)
{
bfree(info->sizes);
bfree(info->face_and_style);
bfree(info->path);
}
extern void build_font_path_info(FT_Face face, FT_Long idx, const char *path);
extern char *sfnt_name_to_utf8(FT_SfntName *sfnt_name);
extern bool load_cached_os_font_list(void);
extern void load_os_font_list(void);
extern void free_os_font_list(void);
extern const char *get_font_path(const char *family, uint16_t size,
const char *style, uint32_t flags, FT_Long *idx);