summaryrefslogtreecommitdiff
path: root/source/fitz/draw-affine.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/draw-affine.c')
-rw-r--r--source/fitz/draw-affine.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/fitz/draw-affine.c b/source/fitz/draw-affine.c
index 1c6c26d1..d56eea96 100644
--- a/source/fitz/draw-affine.c
+++ b/source/fitz/draw-affine.c
@@ -3,11 +3,6 @@
typedef unsigned char byte;
-static inline float roundup(float x)
-{
- return (x < 0) ? floorf(x) : ceilf(x);
-}
-
static inline int lerp(int a, int b, int t)
{
return a + (((b - a) * t) >> 16);