summaryrefslogtreecommitdiff
path: root/src/context.h
blob: b89fa7f4c6c2e92ad2750f5a3a171bd925e640dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef ttf2f_context_h_
#define ttf2f_context_h_

#include "fm.h"
#include "glyph.h"

typedef struct ttf2f_ctx ttf2f_ctx;

struct ttf2f_ctx {
	struct font_metrics *metrics;

	size_t nglyphs;
	struct glyph *glyphs;

	struct glyph *latin1tab[256];
};

#endif