]> git.imager.perl.org - imager.git/blob - rendert.h
use $Config{path_sep} instead of working it out on our own
[imager.git] / rendert.h
1 #ifndef IMAGER_RENDERT_H
2 #define IMAGER_RENDERT_H
3
4 typedef struct {
5   int magic;
6   i_img *im;
7
8   int line_width;
9   i_color *line_8;
10   i_fcolor *line_double;
11
12   int fill_width;
13   i_color *fill_line_8;
14   i_fcolor *fill_line_double;
15 } i_render;
16
17 #endif