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 22229002: Cleanup the ARM blitrow optimizations (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/opts/SkBlitRow_opts_arm_neon.h ('k') | 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.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
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 };
OLDNEW
« no previous file with comments | « src/opts/SkBlitRow_opts_arm_neon.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698