Disable 32A->565+dither neon, since it gives different results between its

8-at-a-time loop (neon), and its < 8 residual loop. If we can unify the output,
I would love to reinstate this.



git-svn-id: http://skia.googlecode.com/svn/trunk@528 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@android.com 2010-03-12 18:14:36 +00:00
parent 5b81535014
commit fffe48f4ac

View File

@ -984,7 +984,7 @@ static const SkBlitRow::Proc platform_565_procs[] = {
// dither
S32_D565_Opaque_Dither_PROC,
S32_D565_Blend_Dither_PROC,
S32A_D565_Opaque_Dither_PROC,
NULL, // S32A_D565_Opaque_Dither_neon gives diff results in residual case
NULL, // S32A_D565_Blend_Dither
};