From 77180c7adc8693d81f47634ebd00579d622d1e43 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Wed, 8 Jun 2016 23:31:28 -0400 Subject: [PATCH] [smooth] Re-enable new line renderer on 64-bit archs. * src/smooth/ftgrays (gray_render_line): Conditionally re-enable new implementation, where it is safe from overflows. --- ChangeLog | 7 +++++++ src/smooth/ftgrays.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4218d3a79..53d85e545 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2016-06-08 Alexei Podtelezhnikov + + [smooth] Re-enable new line renderer on 64-bit archs. + + * src/smooth/ftgrays (gray_render_line): Conditionally re-enable new + implementation, where it is safe from overflows. + 2016-06-08 Alexei Podtelezhnikov [smooth] Minor clean-ups. diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c index 8aad262cb..efa5f94fa 100644 --- a/src/smooth/ftgrays.c +++ b/src/smooth/ftgrays.c @@ -694,7 +694,7 @@ typedef ptrdiff_t FT_PtrDist; gray_set_cell( RAS_VAR_ ex, ey ); } -#if 1 +#ifndef FT_LONG64 /*************************************************************************/ /* */