ref: fcc50bc95967105985f7a7da7c11c82f1515090e
dir: /libpt/pt.h/
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);