| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |