Pillow/libImaging/Sgi.h

40 lines
624 B
C
Raw Normal View History

2017-07-28 01:51:10 +03:00
/* Sgi.h */
typedef struct {
/* CONFIGURATION */
2017-07-28 22:58:17 +03:00
/* Number of bytes per channel per pixel */
2017-07-28 01:51:10 +03:00
int bpc;
/* RLE offsets table */
UINT32 *starttab;
/* RLE lengths table */
UINT32 *lengthtab;
/* current row offset */
UINT32 rleoffset;
/* current row length */
UINT32 rlelength;
/* RLE table size */
int tablen;
/* RLE table index */
int tabindex;
/* buffer index */
int bufindex;
/* current row index */
int rowno;
/* current channel index */
int channo;
/* image data size from file descriptor */
long bufsize;
2017-07-28 01:51:10 +03:00
} SGISTATE;