| OLD | NEW |
| 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 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1636 count--; | 1636 count--; |
| 1637 } | 1637 } |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 /////////////////////////////////////////////////////////////////////////////// | 1640 /////////////////////////////////////////////////////////////////////////////// |
| 1641 | 1641 |
| 1642 const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = { | 1642 const SkBlitRow::Proc sk_blitrow_platform_565_procs_arm_neon[] = { |
| 1643 // no dither | 1643 // no dither |
| 1644 S32_D565_Opaque_neon, | 1644 S32_D565_Opaque_neon, |
| 1645 S32_D565_Blend_neon, | 1645 S32_D565_Blend_neon, |
| 1646 #ifdef SK_CPU_ARM32 |
| 1646 S32A_D565_Opaque_neon, | 1647 S32A_D565_Opaque_neon, |
| 1648 #else |
| 1649 NULL, |
| 1650 #endif |
| 1647 S32A_D565_Blend_neon, | 1651 S32A_D565_Blend_neon, |
| 1648 | 1652 |
| 1649 // dither | 1653 // dither |
| 1650 S32_D565_Opaque_Dither_neon, | 1654 S32_D565_Opaque_Dither_neon, |
| 1651 S32_D565_Blend_Dither_neon, | 1655 S32_D565_Blend_Dither_neon, |
| 1652 S32A_D565_Opaque_Dither_neon, | 1656 S32A_D565_Opaque_Dither_neon, |
| 1653 NULL, // S32A_D565_Blend_Dither | 1657 NULL, // S32A_D565_Blend_Dither |
| 1654 }; | 1658 }; |
| 1655 | 1659 |
| 1656 const SkBlitRow::Proc32 sk_blitrow_platform_32_procs_arm_neon[] = { | 1660 const SkBlitRow::Proc32 sk_blitrow_platform_32_procs_arm_neon[] = { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 1670 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque, | 1674 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque, |
| 1671 #else | 1675 #else |
| 1672 S32A_Opaque_BlitRow32_neon, // S32A_Opaque, | 1676 S32A_Opaque_BlitRow32_neon, // S32A_Opaque, |
| 1673 #endif | 1677 #endif |
| 1674 #ifdef SK_CPU_ARM32 | 1678 #ifdef SK_CPU_ARM32 |
| 1675 S32A_Blend_BlitRow32_neon // S32A_Blend | 1679 S32A_Blend_BlitRow32_neon // S32A_Blend |
| 1676 #else | 1680 #else |
| 1677 NULL | 1681 NULL |
| 1678 #endif | 1682 #endif |
| 1679 }; | 1683 }; |
| OLD | NEW |