summaryrefslogtreecommitdiff
path: root/Build/source/libs/gd/libgd-src/src/gd_interpolation.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/gd/libgd-src/src/gd_interpolation.c')
-rw-r--r--Build/source/libs/gd/libgd-src/src/gd_interpolation.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Build/source/libs/gd/libgd-src/src/gd_interpolation.c b/Build/source/libs/gd/libgd-src/src/gd_interpolation.c
index 73407fdd1f3..ec2a1983096 100644
--- a/Build/source/libs/gd/libgd-src/src/gd_interpolation.c
+++ b/Build/source/libs/gd/libgd-src/src/gd_interpolation.c
@@ -93,9 +93,6 @@ static gdImagePtr gdImageRotateNearestNeighbour(gdImagePtr src,
static gdImagePtr gdImageRotateGeneric(gdImagePtr src, const float degrees,
const int bgColor);
-
-#define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
-
/* only used here, let do a generic fixed point integers later if required by other
part of GD */
typedef long gdFixed;