mirror of
https://github.com/libretro/RetroArch
synced 2025-01-29 09:32:52 +00:00
14 lines
253 B
C
14 lines
253 B
C
|
// 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);
|