mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-14 21:56:56 +03:00
15 lines
223 B
C
15 lines
223 B
C
/* Raw.h */
|
|
|
|
typedef struct {
|
|
/* CONFIGURATION */
|
|
|
|
/* Distance between lines (0=no padding) */
|
|
int stride;
|
|
|
|
/* PRIVATE (initialized by decoder) */
|
|
|
|
/* Padding between lines */
|
|
int skip;
|
|
|
|
} RAWSTATE;
|