blob: 942219bbcb42fad524771c256a898da109f690e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifdef _FITZ_H_
#error "fitz.h must only be included once"
#endif
#define _FITZ_H_
/*
* Base library
*/
#include "fitz/sysdep.h"
#include "fitz/cpudep.h"
#include "fitz/base.h"
#include "fitz/math.h"
#include "fitz/geometry.h"
#include "fitz/hash.h"
/*
* Streams and dynamic objects
*/
#include "fitz/crypt.h"
#include "fitz/object.h"
#include "fitz/buffer.h"
#include "fitz/filter.h"
#include "fitz/stream.h"
/*
* Resources
*/
#include "fitz/cmap.h"
#include "fitz/font.h"
#include "fitz/pixmap.h"
#include "fitz/colorspace.h"
#include "fitz/image.h"
#include "fitz/shade.h"
/*
* Display tree
*/
#include "fitz/tree.h"
#include "fitz/path.h"
#include "fitz/text.h"
/*
* Renderer
*/
#include "fitz/pathscan.h"
#include "fitz/render.h"
|