From fdb5353a693f518f08efe19251176026a072c7a8 Mon Sep 17 00:00:00 2001 From: "reed@android.com" Date: Mon, 19 Oct 2009 19:51:17 +0000 Subject: [PATCH] disable one proc until we fix its handling of src-alpha==0 git-svn-id: http://skia.googlecode.com/svn/trunk@394 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/opts/SkBlitRow_opts_arm.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/opts/SkBlitRow_opts_arm.cpp b/src/opts/SkBlitRow_opts_arm.cpp index d183312b54..89b2e91c4d 100644 --- a/src/opts/SkBlitRow_opts_arm.cpp +++ b/src/opts/SkBlitRow_opts_arm.cpp @@ -714,7 +714,13 @@ const SkBlitRow::Proc SkBlitRow::gPlatform_565_Procs[] = { S32_D565_Opaque_PROC, S32_D565_Blend_PROC, S32A_D565_Opaque_PROC, +#if 0 + // when the src-pixel is 0 (transparent), we are still affecting the dst + // so we're skipping this optimization for now S32A_D565_Blend_PROC, +#else + NULL, +#endif // dither NULL, // S32_D565_Opaque_Dither, -- 2.34.1