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.h" | 8 #include "SkBlitRow_opts_arm_neon.h" |
9 | 9 |
10 #include "SkBlitMask.h" | 10 #include "SkBlitMask.h" |
11 #include "SkBlitRow.h" | 11 #include "SkBlitRow.h" |
12 #include "SkColorPriv.h" | 12 #include "SkColorPriv.h" |
13 #include "SkDither.h" | 13 #include "SkDither.h" |
14 #include "SkMathPriv.h" | 14 #include "SkMathPriv.h" |
15 #include "SkUtils.h" | 15 #include "SkUtils.h" |
16 | 16 |
17 #include "SkCachePreload_arm.h" | 17 #include "SkCachePreload_arm.h" |
18 | 18 |
(...skipping 1341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1360 * case where we do not inspect the src alpha. | 1360 * case where we do not inspect the src alpha. |
1361 */ | 1361 */ |
1362 #if SK_A32_SHIFT == 24 | 1362 #if SK_A32_SHIFT == 24 |
1363 // This proc assumes the alpha value occupies bits 24-32 of each SkPMColor | 1363 // This proc assumes the alpha value occupies bits 24-32 of each SkPMColor |
1364 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque, | 1364 S32A_Opaque_BlitRow32_neon_src_alpha, // S32A_Opaque, |
1365 #else | 1365 #else |
1366 S32A_Opaque_BlitRow32_neon, // S32A_Opaque, | 1366 S32A_Opaque_BlitRow32_neon, // S32A_Opaque, |
1367 #endif | 1367 #endif |
1368 S32A_Blend_BlitRow32_neon // S32A_Blend | 1368 S32A_Blend_BlitRow32_neon // S32A_Blend |
1369 }; | 1369 }; |
OLD | NEW |