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

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

Issue 2500113004: Port convolve functions to SkOpts (Closed)
Patch Set: Fix typo Created 4 years, 1 month 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/SkBitmapProcState_arm_neon.cpp ('k') | src/opts/SkBitmapProcState_opts_mips_dsp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « src/opts/SkBitmapProcState_arm_neon.cpp ('k') | src/opts/SkBitmapProcState_opts_mips_dsp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698