OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright 2009 The Android Open Source Project | |
3 * | |
4 * Use of this source code is governed by a BSD-style license that can be | |
5 * found in the LICENSE file. | |
6 */ | |
7 | |
8 | |
9 #include "SkBitmapScaler.h" | |
10 #include "SkBitmapProcState.h" | |
11 #include "SkColorPriv.h" | |
12 #include "SkPaint.h" | |
13 #include "SkTypes.h" | |
14 #include "SkUtils.h" | |
15 #include "SkUtilsArm.h" | |
16 | |
17 #include "SkConvolver.h" | |
18 | |
19 void SkBitmapProcState::platformProcs() { } | |
20 | |
21 /////////////////////////////////////////////////////////////////////////////// | |
22 | |
23 extern void platformConvolutionProcs_arm_neon(SkConvolutionProcs* procs); | |
24 | |
25 void platformConvolutionProcs_arm(SkConvolutionProcs* procs) { | |
26 } | |
27 | |
28 void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs* procs) { | |
29 SK_ARM_NEON_WRAP(platformConvolutionProcs_arm)(procs); | |
30 } | |
OLD | NEW |