many optimizations and bugfixes in the new intersector code
[swftools.git] / lib / gfxpoly / xrow.h
index cc32436..51300a3 100644 (file)
@@ -7,11 +7,13 @@ typedef struct _xrow {
     int32_t*x;
     int num;
     int size;
+    int32_t lastx;
 } xrow_t;
 
 xrow_t* xrow_new();
 void xrow_add(xrow_t*xrow, int32_t x);
 void xrow_sort(xrow_t*xrow);
+void xrow_dump(xrow_t*xrow);
 void xrow_reset(xrow_t*xrow);
 void xrow_destroy(xrow_t*xrow);