Oops. Left out the all-important transform structures

This commit is contained in:
DRC
2011-03-02 09:27:49 +00:00
parent 66b6d80ed6
commit 4be061b162

View File

@@ -115,6 +115,17 @@ TJXFORM_ROT270 /* Rotate image counter-clockwise by 90 degrees. This
/* This option will discard the color data in the input image and produce
a grayscale output image. */
typedef struct
{
int x, y, w, h;
} tjregion;
typedef struct
{
tjregion r;
int op, options;
} tjtransform;
typedef void* tjhandle;
#define TJPAD(p) (((p)+3)&(~3))