shithub: spit

ref: 528b6d8c25839665550a500e53c4cd9329de3927
dir: /libpt/pt.h/

View raw version
typedef struct Sdopts Sdopts;
typedef struct Sfont Sfont;
#pragma incomplete Sfont

struct Sdopts {
	int prefilter;
	float gamma;
};

struct Sfontinfo {
	char *family;
	char *subfamily;
	
};

Sfont *pt_font(uchar *data, float height);
void pt_freefont(Sfont *f);
Rectangle pt_textrect(Sfont *f, char *s);
Image *pt_textdraw(Sfont *f, char *s, Rectangle rect, Sdopts *opts);