blob: dbd82ff5657be1f7ccdc14beccfeff01d491b07d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 5 may 2016
// draw.c
struct uiDrawContext {
cairo_t *cr;
};
// drawpath.c
extern void runPath(uiDrawPath *p, cairo_t *cr);
extern uiDrawFillMode pathFillMode(uiDrawPath *path);
// drawmatrix.c
extern void m2c(uiDrawMatrix *m, cairo_matrix_t *c);
|