]> git.imager.perl.org - imager.git/blob - rendert.h
make capturing IPTC content thread-safe
[imager.git] / rendert.h
1 #ifndef IMAGER_RENDERT_H
2 #define IMAGER_RENDERT_H
3
4 #include "imdatatypes.h"
5
6 struct i_render_tag {
7   int magic;
8   i_img *im;
9
10   i_img_dim line_width;
11   i_color *line_8;
12   i_fcolor *line_double;
13
14   i_img_dim fill_width;
15   i_color *fill_line_8;
16   i_fcolor *fill_line_double;
17 };
18
19 #endif