aboutsummaryrefslogtreecommitdiff
path: root/source/clip.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/clip.c')
-rw-r--r--source/clip.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/source/clip.c b/source/clip.c
index 8993e72..7931101 100644
--- a/source/clip.c
+++ b/source/clip.c
@@ -12,10 +12,6 @@ struct Band
uint32_t Right;
};
-#undef MIN
-#undef MAX
-#define MIN(A,B) ((A) < (B) ? (A) : (B))
-#define MAX(A,B) ((A) > (B) ? (A) : (B))
#define BAND_EMPTY(B) (B.Left >= B.Right)
#define BANDS_INTERSECT(A,B) ((A.Left >= B.Left && A.Left < B.Right) || \
(B.Left >= A.Left && B.Left < A.Right))
@@ -674,4 +670,3 @@ Clip_ok:;
} // for (int w...
} // for (int c...
}
-