91727879b58dcf0b5e804c2b09691fbc19dd4a9f
[swftools.git] / lib / gfxpoly / renderpoly.h
1 #ifndef __renderpoly_h__
2 #define __renderpoly_h__
3
4 #include "poly.h"
5 #include "wind.h"
6
7 typedef struct {
8     int xmin;
9     int ymin;
10     int xmax;
11     int ymax;
12     int width;
13     int height;
14 } intbbox_t;
15
16 unsigned char* render_polygon(gfxpoly_t*polygon, intbbox_t*bbox, double zoom, windrule_t*rule);
17
18 #endif