Add Xft and follback-fonts support to graphics lib

This commit is contained in:
Eric Pruitt
2015-03-05 20:26:11 -08:00
committed by Anselm R Garbe
parent 35db6d8afc
commit 14343e69cc
6 changed files with 299 additions and 103 deletions

1
util.h
View File

@ -2,5 +2,6 @@
#define MAX(A, B) ((A) > (B) ? (A) : (B))
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
void die(const char *errstr, ...);