Changeset View
Changeset View
Standalone View
Standalone View
source/blender/imbuf/IMB_imbuf_types.h
| Show First 20 Lines • Show All 121 Lines • ▼ Show 20 Lines | |||||
| #define JP2_J2K (1 << 3) | #define JP2_J2K (1 << 3) | ||||
| #endif | #endif | ||||
| #define PNG_16BIT (1 << 10) | #define PNG_16BIT (1 << 10) | ||||
| #define RAWTGA 1 | #define RAWTGA 1 | ||||
| #ifdef WITH_TIFF | #ifdef WITH_TIFF | ||||
| #define TIF_16BIT (1 << 8 ) | #define TIF_16BIT (1 << 8) | ||||
| #define TIF_CPRS_NONE (1 << 7) | |||||
| #define TIF_CPRS_DEFLATE (1 << 6) | |||||
| #define TIF_CPRS_LZW (1 << 5) | |||||
| #define TIF_CPRS_PACKBITS (1 << 4) | |||||
campbellbarton: would rather `COMPRESS`, without abbreviation. (same with var names) | |||||
| #endif | #endif | ||||
| typedef struct ImbFormatOptions { | typedef struct ImbFormatOptions { | ||||
| short flag; | short flag; | ||||
| char quality; /* quality serves dual purpose as quality number for jpeg or compression amount for png */ | char quality; /* quality serves dual purpose as quality number for jpeg or compression amount for png */ | ||||
| } ImbFormatOptions; | } ImbFormatOptions; | ||||
| typedef struct ImBuf { | typedef struct ImBuf { | ||||
| ▲ Show 20 Lines • Show All 154 Lines • Show Last 20 Lines | |||||
would rather COMPRESS, without abbreviation. (same with var names)