summaryrefslogtreecommitdiff
path: root/fitzdraw
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2009-12-02 22:54:13 +0100
committerTor Andersson <tor@ghostscript.com>2009-12-02 22:54:13 +0100
commit6af1fed04cea6c3d7fe086c593c57fdc8fed8719 (patch)
tree45a9abc2ea8c7905a765fe3dbb196a266d5c5edf /fitzdraw
parent0345e9e83bd16b39fffecd3bda584996f642b8cd (diff)
downloadmupdf-6af1fed04cea6c3d7fe086c593c57fdc8fed8719.tar.xz
Killing time. Butchered display tree and disabled all calls to it.
Diffstat (limited to 'fitzdraw')
-rw-r--r--fitzdraw/Jamfile9
-rw-r--r--fitzdraw/archx86.c2
-rw-r--r--fitzdraw/blendmodes.c2
-rw-r--r--fitzdraw/glyphcache.c2
-rw-r--r--fitzdraw/imagedraw.c2
-rw-r--r--fitzdraw/imagescale.c2
-rw-r--r--fitzdraw/imageunpack.c2
-rw-r--r--fitzdraw/meshdraw.c2
-rw-r--r--fitzdraw/pathscan.c2
-rw-r--r--fitzdraw/pathstroke.c2
-rw-r--r--fitzdraw/pixmap.c2
-rw-r--r--fitzdraw/porterduff.c2
-rw-r--r--fitzdraw/render.c2
13 files changed, 16 insertions, 17 deletions
diff --git a/fitzdraw/Jamfile b/fitzdraw/Jamfile
index c76d9c6d..7c66733c 100644
--- a/fitzdraw/Jamfile
+++ b/fitzdraw/Jamfile
@@ -8,14 +8,13 @@ Library libfitzdraw :
imagedraw.c
imageunpack.c
imagescale.c
- pathscan.c
- pathfill.c
- pathstroke.c
- render.c
+# pathscan.c
+# pathfill.c
+# pathstroke.c
+# render.c
blendmodes.c
;
if $(OSPLAT) = PPC { Library libfitzdraw : archppc.c ; }
if $(OSPLAT) = SPARC { Library libfitzdraw : archsparc.c ; }
if $(OSPLAT) = X86 { Library libfitzdraw : archx86.c ; }
-
diff --git a/fitzdraw/archx86.c b/fitzdraw/archx86.c
index f3d9ef24..23efa93d 100644
--- a/fitzdraw/archx86.c
+++ b/fitzdraw/archx86.c
@@ -3,7 +3,7 @@
*/
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/blendmodes.c b/fitzdraw/blendmodes.c
index 0b6fedcc..66517d8b 100644
--- a/fitzdraw/blendmodes.c
+++ b/fitzdraw/blendmodes.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/glyphcache.c b/fitzdraw/glyphcache.c
index 0b602857..a921ba89 100644
--- a/fitzdraw/glyphcache.c
+++ b/fitzdraw/glyphcache.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef struct fz_hash_s fz_hash;
diff --git a/fitzdraw/imagedraw.c b/fitzdraw/imagedraw.c
index 8a7cf2cc..aa1698dc 100644
--- a/fitzdraw/imagedraw.c
+++ b/fitzdraw/imagedraw.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/imagescale.c b/fitzdraw/imagescale.c
index ad73ece1..e9f503cb 100644
--- a/fitzdraw/imagescale.c
+++ b/fitzdraw/imagescale.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/imageunpack.c b/fitzdraw/imageunpack.c
index 4df495ba..61eacb63 100644
--- a/fitzdraw/imageunpack.c
+++ b/fitzdraw/imageunpack.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/meshdraw.c b/fitzdraw/meshdraw.c
index ba1e036c..4c341a82 100644
--- a/fitzdraw/meshdraw.c
+++ b/fitzdraw/meshdraw.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
/*
diff --git a/fitzdraw/pathscan.c b/fitzdraw/pathscan.c
index dc0ca7c7..e2e18e7e 100644
--- a/fitzdraw/pathscan.c
+++ b/fitzdraw/pathscan.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
/* divide and floor towards -inf */
diff --git a/fitzdraw/pathstroke.c b/fitzdraw/pathstroke.c
index 13e70dd4..7b08ab5c 100644
--- a/fitzdraw/pathstroke.c
+++ b/fitzdraw/pathstroke.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
enum { BUTT = 0, ROUND = 1, SQUARE = 2, MITER = 0, BEVEL = 2 };
diff --git a/fitzdraw/pixmap.c b/fitzdraw/pixmap.c
index 592eaf44..6ea1d1d9 100644
--- a/fitzdraw/pixmap.c
+++ b/fitzdraw/pixmap.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
fz_error
diff --git a/fitzdraw/porterduff.c b/fitzdraw/porterduff.c
index 755ba434..59c7714b 100644
--- a/fitzdraw/porterduff.c
+++ b/fitzdraw/porterduff.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
typedef unsigned char byte;
diff --git a/fitzdraw/render.c b/fitzdraw/render.c
index b4cfa4fa..0c202e9e 100644
--- a/fitzdraw/render.c
+++ b/fitzdraw/render.c
@@ -1,5 +1,5 @@
#include "fitz_base.h"
-#include "fitz_tree.h"
+#include "fitz_res.h"
#include "fitz_draw.h"
#ifdef _MSC_VER