summaryrefslogtreecommitdiff
path: root/raster
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-06-04 16:21:07 +0200
committerTor Andersson <tor@ghostscript.com>2005-06-04 16:21:07 +0200
commit73606187c9598c4bb1c1fea132e9cef1dc14c838 (patch)
tree71c49b1a4ef638ec9787fc1bee69df075f75bedb /raster
parent7ee19483ed81a885f464d4e93f4eefb3d4037d30 (diff)
downloadmupdf-73606187c9598c4bb1c1fea132e9cef1dc14c838.tar.xz
new world order ii -- revenge of the header files
Diffstat (limited to 'raster')
-rw-r--r--raster/archppc.c4
-rw-r--r--raster/archsparc.c4
-rw-r--r--raster/archx86.c4
-rw-r--r--raster/glyphcache.c4
-rw-r--r--raster/imagedraw.c4
-rw-r--r--raster/imagescale.c4
-rw-r--r--raster/imageunpack.c4
-rw-r--r--raster/meshdraw.c4
-rw-r--r--raster/pathfill.c4
-rw-r--r--raster/pathscan.c4
-rw-r--r--raster/pathstroke.c4
-rw-r--r--raster/pixmap.c4
-rw-r--r--raster/porterduff.c4
-rw-r--r--raster/render.c4
14 files changed, 42 insertions, 14 deletions
diff --git a/raster/archppc.c b/raster/archppc.c
index 2d0fee1d..30dbd780 100644
--- a/raster/archppc.c
+++ b/raster/archppc.c
@@ -2,7 +2,9 @@
* PowerPC specific render optims live here
*/
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/archsparc.c b/raster/archsparc.c
index 32e142c3..b78e5a4d 100644
--- a/raster/archsparc.c
+++ b/raster/archsparc.c
@@ -1,7 +1,9 @@
/*
SPARC specific render optims live here
*/
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
#ifdef HAVE_VIS
diff --git a/raster/archx86.c b/raster/archx86.c
index a4161a1f..089edf02 100644
--- a/raster/archx86.c
+++ b/raster/archx86.c
@@ -2,7 +2,9 @@
* x86 specific render optims live here
*/
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/glyphcache.c b/raster/glyphcache.c
index 6fc8bd52..b10b47bb 100644
--- a/raster/glyphcache.c
+++ b/raster/glyphcache.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef struct fz_hash_s fz_hash;
typedef struct fz_key_s fz_key;
diff --git a/raster/imagedraw.c b/raster/imagedraw.c
index 0654b006..0f51c01b 100644
--- a/raster/imagedraw.c
+++ b/raster/imagedraw.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/imagescale.c b/raster/imagescale.c
index ede19f1c..6d12086d 100644
--- a/raster/imagescale.c
+++ b/raster/imagescale.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/imageunpack.c b/raster/imageunpack.c
index 0885c293..b650b0f2 100644
--- a/raster/imageunpack.c
+++ b/raster/imageunpack.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/meshdraw.c b/raster/meshdraw.c
index f5b1a3fb..c0d798e6 100644
--- a/raster/meshdraw.c
+++ b/raster/meshdraw.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
/*
* polygon clipping
diff --git a/raster/pathfill.c b/raster/pathfill.c
index d25f78b1..e361b9a5 100644
--- a/raster/pathfill.c
+++ b/raster/pathfill.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
static fz_error *
line(fz_gel *gel, fz_matrix *ctm, float x0, float y0, float x1, float y1)
diff --git a/raster/pathscan.c b/raster/pathscan.c
index cea3a849..455b04f1 100644
--- a/raster/pathscan.c
+++ b/raster/pathscan.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
/*
* Global Edge List -- list of straight path segments for scan conversion
diff --git a/raster/pathstroke.c b/raster/pathstroke.c
index 2527e6ad..b7b76f9f 100644
--- a/raster/pathstroke.c
+++ b/raster/pathstroke.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
enum { BUTT = 0, ROUND = 1, SQUARE = 2, MITER = 0, BEVEL = 2 };
diff --git a/raster/pixmap.c b/raster/pixmap.c
index 8f34ebcd..74e2f59a 100644
--- a/raster/pixmap.c
+++ b/raster/pixmap.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
fz_error *
fz_newpixmap(fz_pixmap **pixp, int x, int y, int w, int h, int n)
diff --git a/raster/porterduff.c b/raster/porterduff.c
index 9cd99dbb..ab974151 100644
--- a/raster/porterduff.c
+++ b/raster/porterduff.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
typedef unsigned char byte;
diff --git a/raster/render.c b/raster/render.c
index cf69e942..36a9ed97 100644
--- a/raster/render.c
+++ b/raster/render.c
@@ -1,4 +1,6 @@
-#include <fitz.h>
+#include "fitz-base.h"
+#include "fitz-world.h"
+#include "fitz-draw.h"
#define noDEBUG(args...) printf(args)
#ifndef DEBUG