Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: src/opts/SkBlitRow_opts_arm_neon.cpp

Issue 497823002: Disable Neon optimization of bad S32A/D565 blend. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: wrong proc Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/opts/SkBlitRow_opts_arm_neon.cpp
diff --git a/src/opts/SkBlitRow_opts_arm_neon.cpp b/src/opts/SkBlitRow_opts_arm_neon.cpp
index 45b1a190d3fddcf66a41e98768ca729d8c2802ff..b372d16e2fa030458fb4450db3c0a1f80f83cdd0 100644
--- a/src/opts/SkBlitRow_opts_arm_neon.cpp
+++ b/src/opts/SkBlitRow_opts_arm_neon.cpp
@@ -1649,16 +1649,13 @@ void Color32_arm_neon(SkPMColor* dst, const SkPMColor* src, int count,
const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = {
// no dither
S32_D565_Opaque_neon,
-#if 0
S32_D565_Blend_neon,
-#else
- NULL, // https://code.google.com/p/skia/issues/detail?id=2797
-#endif
S32A_D565_Opaque_neon,
-#ifdef SK_CPU_ARM64
- NULL, // https://code.google.com/p/skia/issues/detail?id=2845
-#else
+#if 0
S32A_D565_Blend_neon,
+#else
+ NULL, // https://code.google.com/p/skia/issues/detail?id=2845
+ // https://code.google.com/p/skia/issues/detail?id=2797
#endif
// dither
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698