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

Unified Diff: src/opts/SkBlitRow_opts_arm_neon.cpp

Issue 498733002: disable neon proc that is triggering asserts (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: just disable on arm64 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 4b7e3beeaa39e7f3034f5824ec0fe3439c63b23d..c4865338f3d39dad53ab8a84aecb627b13996920 100644
--- a/src/opts/SkBlitRow_opts_arm_neon.cpp
+++ b/src/opts/SkBlitRow_opts_arm_neon.cpp
@@ -1651,7 +1651,11 @@ const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = {
S32_D565_Opaque_neon,
S32_D565_Blend_neon,
S32A_D565_Opaque_neon,
+#ifdef SK_CPU_ARM64
+ NULL, // https://code.google.com/p/skia/issues/detail?id=2845
+#else
S32A_D565_Blend_neon,
+#endif
// dither
S32_D565_Opaque_Dither_neon,
« 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