projects
/
imager.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
commit changes from draw branch
[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