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

Side by Side Diff: src/opts/SkBlurImage_opts_neon.cpp

Issue 1134513003: We don't use boxBlurY. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 years, 7 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 | « src/opts/SkBlurImage_opts_neon.h ('k') | src/opts/SkBlurImage_opts_none.cpp » ('j') | 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 2013 The Android Open Source Project 2 * Copyright 2013 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 8
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkColorPriv.h" 10 #include "SkColorPriv.h"
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 dptr += dstStrideX; 170 dptr += dstStrideX;
171 } 171 }
172 src += srcStrideY; 172 src += srcStrideY;
173 dst += dstStrideY; 173 dst += dstStrideY;
174 } 174 }
175 } 175 }
176 176
177 } // namespace 177 } // namespace
178 178
179 bool SkBoxBlurGetPlatformProcs_NEON(SkBoxBlurProc* boxBlurX, 179 bool SkBoxBlurGetPlatformProcs_NEON(SkBoxBlurProc* boxBlurX,
180 SkBoxBlurProc* boxBlurY,
181 SkBoxBlurProc* boxBlurXY, 180 SkBoxBlurProc* boxBlurXY,
182 SkBoxBlurProc* boxBlurYX) { 181 SkBoxBlurProc* boxBlurYX) {
183 *boxBlurX = SkBoxBlur_NEON<kX, kX>; 182 *boxBlurX = SkBoxBlur_NEON<kX, kX>;
184 *boxBlurY = SkBoxBlur_NEON<kY, kY>;
185 *boxBlurXY = SkBoxBlur_NEON<kX, kY>; 183 *boxBlurXY = SkBoxBlur_NEON<kX, kY>;
186 *boxBlurYX = SkBoxBlur_NEON<kY, kX>; 184 *boxBlurYX = SkBoxBlur_NEON<kY, kX>;
187 return true; 185 return true;
188 } 186 }
OLDNEW
« no previous file with comments | « src/opts/SkBlurImage_opts_neon.h ('k') | src/opts/SkBlurImage_opts_none.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698