On 08/09/2010 08:50, David Bevan wrote:
if (s> (s_limit = L * (TPos)(FT_MAX_CURVE_DEVIATION / 0.75)))
goto Split;
Surely this should be
if (s> (s_limit = L * (TPos)(FT_MAX_CURVE_DEVIATION * 0.75)))
goto Split;
because the limit is 3/4 of the deviation, times L?
Graham
_______________________________________________ Freetype-devel mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/freetype-devel
