diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2013-06-17 16:34:58 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2013-06-18 17:37:13 +0200 |
commit | 8856f8521a42872a95579666b24ecfb65c5a20a1 (patch) | |
tree | eab5136996379f77d52699c25f8855ea36d06cc2 /draw | |
parent | 03e5755b93e90cc4c09daad4c79b6016bf4ce43c (diff) | |
download | mupdf-8856f8521a42872a95579666b24ecfb65c5a20a1.tar.xz |
Merge common and internal headers into one.
Diffstat (limited to 'draw')
-rw-r--r-- | draw/draw_affine.c | 2 | ||||
-rw-r--r-- | draw/draw_blend.c | 2 | ||||
-rw-r--r-- | draw/draw_device.c | 2 | ||||
-rw-r--r-- | draw/draw_edge.c | 2 | ||||
-rw-r--r-- | draw/draw_glyph.c | 2 | ||||
-rw-r--r-- | draw/draw_mesh.c | 2 | ||||
-rw-r--r-- | draw/draw_paint.c | 2 | ||||
-rw-r--r-- | draw/draw_path.c | 2 | ||||
-rw-r--r-- | draw/draw_scale.c | 2 | ||||
-rw-r--r-- | draw/draw_simple_scale.c | 2 | ||||
-rw-r--r-- | draw/draw_unpack.c | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/draw/draw_affine.c b/draw/draw_affine.c index 9ee1d50c..eb8ae8eb 100644 --- a/draw/draw_affine.c +++ b/draw/draw_affine.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" typedef unsigned char byte; diff --git a/draw/draw_blend.c b/draw/draw_blend.c index 70a3e1af..ffc8f4d2 100644 --- a/draw/draw_blend.c +++ b/draw/draw_blend.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" /* PDF 1.4 blend modes. These are slow. */ diff --git a/draw/draw_device.c b/draw/draw_device.c index e7287963..00596d99 100644 --- a/draw/draw_device.c +++ b/draw/draw_device.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" #define QUANT(x,a) (((int)((x) * (a))) / (a)) #define HSUBPIX 5.0 diff --git a/draw/draw_edge.c b/draw/draw_edge.c index 137edc62..a850b571 100644 --- a/draw/draw_edge.c +++ b/draw/draw_edge.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" #define BBOX_MIN -(1<<20) #define BBOX_MAX (1<<20) diff --git a/draw/draw_glyph.c b/draw/draw_glyph.c index e8d47c0b..c23d5429 100644 --- a/draw/draw_glyph.c +++ b/draw/draw_glyph.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" #define MAX_GLYPH_SIZE 256 #define MAX_CACHE_SIZE (1024*1024) diff --git a/draw/draw_mesh.c b/draw/draw_mesh.c index 3fa783f0..5b8f3165 100644 --- a/draw/draw_mesh.c +++ b/draw/draw_mesh.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" enum { MAXN = 2 + FZ_MAX_COLORS }; diff --git a/draw/draw_paint.c b/draw/draw_paint.c index 1fccec1f..328069b9 100644 --- a/draw/draw_paint.c +++ b/draw/draw_paint.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" /* diff --git a/draw/draw_path.c b/draw/draw_path.c index 601b6e9c..bd1a85ef 100644 --- a/draw/draw_path.c +++ b/draw/draw_path.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" #define MAX_DEPTH 8 diff --git a/draw/draw_scale.c b/draw/draw_scale.c index 370bd549..74221b3d 100644 --- a/draw/draw_scale.c +++ b/draw/draw_scale.c @@ -6,7 +6,7 @@ given by taking the source pixmap src, scaling it to width w, and height h, and then positioning it at (frac(x),frac(y)). */ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" /* Do we special case handling of single pixel high/wide images? The * 'purest' handling is given by not special casing them, but certain diff --git a/draw/draw_simple_scale.c b/draw/draw_simple_scale.c index 81b4a845..bef7981a 100644 --- a/draw/draw_simple_scale.c +++ b/draw/draw_simple_scale.c @@ -10,7 +10,7 @@ that return values strictly in the 0..1 range, and uses bytes for intermediate results rather than ints. */ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" /* Do we special case handling of single pixel high/wide images? The * 'purest' handling is given by not special casing them, but certain diff --git a/draw/draw_unpack.c b/draw/draw_unpack.c index 7951b6ef..1f33d237 100644 --- a/draw/draw_unpack.c +++ b/draw/draw_unpack.c @@ -1,4 +1,4 @@ -#include "mupdf/fitz-internal.h" +#include "mupdf/fitz.h" /* Unpack image samples and optionally pad pixels with opaque alpha */ |