diff options
Diffstat (limited to 'poly.h')
-rw-r--r-- | poly.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +struct poly_hdr { + unsigned char *addr; + struct coord *c; + char *name; + unsigned char order; + unsigned char type; + unsigned long polys; + unsigned long *count; + unsigned long count_sum; +}; + +void poly_draw_block(struct block_info *blk_inf, unsigned char *p, unsigned char *end, void *data); +int poly_get_param(struct segment *seg, struct param_list *param, int count); |