summaryrefslogtreecommitdiff
path: root/src/base/ftlcdfil.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/ftlcdfil.c')
-rw-r--r--src/base/ftlcdfil.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/base/ftlcdfil.c b/src/base/ftlcdfil.c
index e72f6d668..f3072f2ca 100644
--- a/src/base/ftlcdfil.c
+++ b/src/base/ftlcdfil.c
@@ -28,7 +28,12 @@
/* define USE_LEGACY to implement the legacy filter */
#define USE_LEGACY
+#if 1
+#define FT_SHIFTCLAMP( x ) (FT_Byte)( x >> 8 )
+#else
#define FT_SHIFTCLAMP( x ) ( x >>= 8, (FT_Byte)( x > 255 ? 255 : x ) )
+#endif
+
/* add padding according to filter weights */