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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The Android Open Source Project 2 * Copyright 2012 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkBlitRow_opts_arm_neon.h" 8 #include "SkBlitRow_opts_arm_neon.h"
9 9
10 #include "SkBlitMask.h" 10 #include "SkBlitMask.h"
(...skipping 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 } 1644 }
1645 } 1645 }
1646 1646
1647 /////////////////////////////////////////////////////////////////////////////// 1647 ///////////////////////////////////////////////////////////////////////////////
1648 1648
1649 const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = { 1649 const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = {
1650 // no dither 1650 // no dither
1651 S32_D565_Opaque_neon, 1651 S32_D565_Opaque_neon,
1652 S32_D565_Blend_neon, 1652 S32_D565_Blend_neon,
1653 S32A_D565_Opaque_neon, 1653 S32A_D565_Opaque_neon,
1654 #ifdef SK_CPU_ARM64
1655 NULL, // https://code.google.com/p/skia/issues/detail?id=2845
1656 #else
1654 S32A_D565_Blend_neon, 1657 S32A_D565_Blend_neon,
1658 #endif
1655 1659
1656 // dither 1660 // dither
1657 S32_D565_Opaque_Dither_neon, 1661 S32_D565_Opaque_Dither_neon,
1658 S32_D565_Blend_Dither_neon, 1662 S32_D565_Blend_Dither_neon,
1659 S32A_D565_Opaque_Dither_neon, 1663 S32A_D565_Opaque_Dither_neon,
1660 NULL, // S32A_D565_Blend_Dither 1664 NULL, // S32A_D565_Blend_Dither
1661 }; 1665 };
1662 1666
1663 const SkBlitRow::Proc32 sk_blitrow_platform_32_procs_arm_neon[] = { 1667 const SkBlitRow::Proc32 sk_blitrow_platform_32_procs_arm_neon[] = {
1664 NULL, // S32_Opaque, 1668 NULL, // S32_Opaque,
(...skipping 12 matching lines...) Expand all
1677 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque, 1681 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque,
1678 #else 1682 #else
1679 S32A_Opaque_BlitRow32_neon, // S32A_Opaque, 1683 S32A_Opaque_BlitRow32_neon, // S32A_Opaque,
1680 #endif 1684 #endif
1681 #ifdef SK_CPU_ARM32 1685 #ifdef SK_CPU_ARM32
1682 S32A_Blend_BlitRow32_neon // S32A_Blend 1686 S32A_Blend_BlitRow32_neon // S32A_Blend
1683 #else 1687 #else
1684 NULL 1688 NULL
1685 #endif 1689 #endif
1686 }; 1690 };
OLDNEW
« 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