| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2009 The Android Open Source Project | 2 * Copyright 2009 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 "SkBitmapScaler.h" |
| 9 #include "SkBitmapProcState.h" | 10 #include "SkBitmapProcState.h" |
| 10 #include "SkColorPriv.h" | 11 #include "SkColorPriv.h" |
| 11 #include "SkPaint.h" | 12 #include "SkPaint.h" |
| 12 #include "SkTypes.h" | 13 #include "SkTypes.h" |
| 13 #include "SkUtils.h" | 14 #include "SkUtils.h" |
| 14 #include "SkUtilsArm.h" | 15 #include "SkUtilsArm.h" |
| 15 | 16 |
| 16 #include "SkConvolver.h" | 17 #include "SkConvolver.h" |
| 17 | 18 |
| 18 #if !defined(SK_CPU_ARM64) && SK_ARM_ARCH >= 6 && !defined(SK_CPU_BENDIAN) | 19 #if !defined(SK_CPU_ARM64) && SK_ARM_ARCH >= 6 && !defined(SK_CPU_BENDIAN) |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 #endif | 223 #endif |
| 223 } | 224 } |
| 224 | 225 |
| 225 /////////////////////////////////////////////////////////////////////////////// | 226 /////////////////////////////////////////////////////////////////////////////// |
| 226 | 227 |
| 227 extern void platformConvolutionProcs_arm_neon(SkConvolutionProcs* procs); | 228 extern void platformConvolutionProcs_arm_neon(SkConvolutionProcs* procs); |
| 228 | 229 |
| 229 void platformConvolutionProcs_arm(SkConvolutionProcs* procs) { | 230 void platformConvolutionProcs_arm(SkConvolutionProcs* procs) { |
| 230 } | 231 } |
| 231 | 232 |
| 232 void SkBitmapProcState::platformConvolutionProcs(SkConvolutionProcs* procs) { | 233 void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs* procs) { |
| 233 SK_ARM_NEON_WRAP(platformConvolutionProcs_arm)(procs); | 234 SK_ARM_NEON_WRAP(platformConvolutionProcs_arm)(procs); |
| 234 } | 235 } |
| OLD | NEW |