aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/fontsrv/a.h
blob: 164b1bd6ca461bb9c83d6c67da70e98105d2033c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
typedef struct XFont XFont;
XFont *xfont;
int nxfont;

enum {
	SubfontSize = 32,
	SubfontMask = (1<<16)/SubfontSize - 1,
};

struct XFont
{
	char *name;
	int loaded;
	uchar range[(1<<16)/SubfontSize];	// range[i] == whether to have subfont i*SubfontSize to (i+1)*SubfontSize - 1.
	int nrange;
	int unit;
	double height;
	double originy;
	void (*loadheight)(XFont*, int, int*, int*);

	// fontconfig workarround, as FC_FULLNAME does not work for matching fonts.
	char *fontfile;
	int  index;
};

void	loadfonts(void);
void	load(XFont*);
Memsubfont*	mksubfont(XFont*, char*, int, int, int, int);

extern XFont *xfont;
extern int nxfont;
void *emalloc9p(ulong);

void	drawpjw(Memimage*, Fontchar*, int, int, int, int);