reed@android.com | a0bd7f4 | 2009-08-03 17:22:46 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2009 The Android Open Source Project |
reed@android.com | a0bd7f4 | 2009-08-03 17:22:46 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@android.com | a0bd7f4 | 2009-08-03 17:22:46 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 8 | |
humper | 4f96ab3 | 2014-06-27 11:27:03 -0700 | [diff] [blame] | 9 | #include "SkBitmapScaler.h" |
reed@android.com | a0bd7f4 | 2009-08-03 17:22:46 +0000 | [diff] [blame] | 10 | #include "SkBitmapProcState.h" |
reed@android.com | 6123e47 | 2009-08-04 01:52:27 +0000 | [diff] [blame] | 11 | #include "SkColorPriv.h" |
reed@google.com | 87bde7d | 2013-07-22 17:44:54 +0000 | [diff] [blame] | 12 | #include "SkPaint.h" |
tomhudson@google.com | 26a4d35 | 2012-09-04 16:25:27 +0000 | [diff] [blame] | 13 | #include "SkTypes.h" |
reed@android.com | 6123e47 | 2009-08-04 01:52:27 +0000 | [diff] [blame] | 14 | #include "SkUtils.h" |
commit-bot@chromium.org | 5abacf6 | 2013-07-30 13:16:18 +0000 | [diff] [blame] | 15 | #include "SkUtilsArm.h" |
| 16 | |
| 17 | #include "SkConvolver.h" |
reed@android.com | a0bd7f4 | 2009-08-03 17:22:46 +0000 | [diff] [blame] | 18 | |
mtklein | e683e81 | 2015-08-06 11:18:50 -0700 | [diff] [blame^] | 19 | void SkBitmapProcState::platformProcs() { } |
humper@google.com | 16acf75 | 2013-07-19 21:12:08 +0000 | [diff] [blame] | 20 | |
commit-bot@chromium.org | c518084 | 2013-11-07 15:57:32 +0000 | [diff] [blame] | 21 | /////////////////////////////////////////////////////////////////////////////// |
commit-bot@chromium.org | 5abacf6 | 2013-07-30 13:16:18 +0000 | [diff] [blame] | 22 | |
commit-bot@chromium.org | c518084 | 2013-11-07 15:57:32 +0000 | [diff] [blame] | 23 | extern void platformConvolutionProcs_arm_neon(SkConvolutionProcs* procs); |
commit-bot@chromium.org | 5abacf6 | 2013-07-30 13:16:18 +0000 | [diff] [blame] | 24 | |
commit-bot@chromium.org | c518084 | 2013-11-07 15:57:32 +0000 | [diff] [blame] | 25 | void platformConvolutionProcs_arm(SkConvolutionProcs* procs) { |
commit-bot@chromium.org | 5abacf6 | 2013-07-30 13:16:18 +0000 | [diff] [blame] | 26 | } |
| 27 | |
humper | 4f96ab3 | 2014-06-27 11:27:03 -0700 | [diff] [blame] | 28 | void SkBitmapScaler::PlatformConvolutionProcs(SkConvolutionProcs* procs) { |
commit-bot@chromium.org | c518084 | 2013-11-07 15:57:32 +0000 | [diff] [blame] | 29 | SK_ARM_NEON_WRAP(platformConvolutionProcs_arm)(procs); |
skia.committer@gmail.com | 1f3c738 | 2013-07-20 07:00:58 +0000 | [diff] [blame] | 30 | } |