blob: bf8f3feff32f16c65834560f49a6b1636d76c8f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MUPDF_FITZ_COLORSPACE_IMP_H
#define MUPDF_FITZ_COLORSPACE_IMP_H
struct fz_colorspace_s
{
fz_storable storable;
size_t size;
char name[16];
int n;
int is_subtractive;
fz_colorspace_convert_fn *to_rgb;
fz_colorspace_convert_fn *from_rgb;
fz_colorspace_destruct_fn *free_data;
void *data;
};
#endif
|