summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-06-19 13:35:14 +0200
committerRobin Watts <robin.watts@artifex.com>2017-06-22 15:46:55 +0100
commit978c99d48e05db3130a342d8810bf1ce28faff74 (patch)
treeffc65808370364d36ae3ebe2d394429fca1bfaef /source
parent7411feae53453b8e0254d91ed25a6fb4f3d9bf98 (diff)
downloadmupdf-978c99d48e05db3130a342d8810bf1ce28faff74.tar.xz
Remove unused static functions.
Diffstat (limited to 'source')
-rw-r--r--source/fitz/draw-edgebuffer.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/fitz/draw-edgebuffer.c b/source/fitz/draw-edgebuffer.c
index d3145d4a..60c28a6d 100644
--- a/source/fitz/draw-edgebuffer.c
+++ b/source/fitz/draw-edgebuffer.c
@@ -685,11 +685,6 @@ static inline int dirn_flip(int d)
return d < 0 ? d : d^1;
}
-static inline int dirns_set(int d0, int d1)
-{
- return d0 != DIRN_UNSET || d1 != DIRN_UNSET;
-}
-
static inline int dirns_merge(int d0, int d1)
{
if (d0 == DIRN_UNSET)
@@ -698,14 +693,6 @@ static inline int dirns_merge(int d0, int d1)
return d0;
}
-static inline int dirns_merge_opposed(int d0, int d1)
-{
- if (d0 == DIRN_UNSET)
- return d1 == DIRN_UP ? DIRN_DOWN : DIRN_UP;
- assert(dirns_match(d0, d1));
- return d0;
-}
-
static void
cursor_flush(fz_edgebuffer * restrict eb)
{