projects
/
imager.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
rename font.c to fontft1.c, since it only does FT1 now
[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