# HG changeset patch # User Sam Lantinga # Date 1258789572 0 # Node ID ab99313951cd57a998a43b01bd32509478fea9dc # Parent 3bd01435287fc326ec557c7c2627d6d6bf3d7e68 Increased tolerance a little bit more for multiple blending passes accumulating error. diff -r 3bd01435287f -r ab99313951cd test/automated/common/common.c --- a/test/automated/common/common.c Sat Nov 21 07:26:52 2009 +0000 +++ b/test/automated/common/common.c Sat Nov 21 07:46:12 2009 +0000 @@ -63,7 +63,7 @@ dist += (A-pd[3])*(A-pd[3]); } /* Allow up to sqrt(32) difference in blending accuracy */ - if (dist > 32) { + if (dist > 64) { /*printf("pixel %d,%d varies by %d\n", i, j, dist);*/ ++ret; }