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

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

Issue 1952953004: Remove NEON runtime detection support. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: (x) Created 4 years, 7 months 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
« src/core/SkUtilsArm.h ('K') | « src/core/SkUtilsArm.h ('k') | no next file » | 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 2015 Google Inc.
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 #include "SkOpts.h"
9
10 #define SK_OPTS_NS sk_neon
11 #include "SkBlitMask_opts.h"
12 #include "SkBlitRow_opts.h"
13 #include "SkBlurImageFilter_opts.h"
14 #include "SkColorCubeFilter_opts.h"
15 #include "SkMorphologyImageFilter_opts.h"
16 #include "SkSwizzler_opts.h"
17 #include "SkTextureCompressor_opts.h"
18 #include "SkXfermode_opts.h"
19
20 namespace SkOpts {
21 void Init_neon() {
22 create_xfermode = sk_neon::create_xfermode;
23
24 box_blur_xx = sk_neon::box_blur_xx;
25 box_blur_xy = sk_neon::box_blur_xy;
26 box_blur_yx = sk_neon::box_blur_yx;
27
28 dilate_x = sk_neon::dilate_x;
29 dilate_y = sk_neon::dilate_y;
30 erode_x = sk_neon::erode_x;
31 erode_y = sk_neon::erode_y;
32
33 texture_compressor = sk_neon::texture_compressor;
34 fill_block_dimensions = sk_neon::fill_block_dimensions;
35
36 blit_mask_d32_a8 = sk_neon::blit_mask_d32_a8;
37
38 blit_row_color32 = sk_neon::blit_row_color32;
39 blit_row_s32a_opaque = sk_neon::blit_row_s32a_opaque;
40
41 color_cube_filter_span = sk_neon::color_cube_filter_span;
42
43 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA;
44 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA;
45 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA;
46 RGB_to_RGB1 = sk_neon::RGB_to_RGB1;
47 RGB_to_BGR1 = sk_neon::RGB_to_BGR1;
48 gray_to_RGB1 = sk_neon::gray_to_RGB1;
49 grayA_to_RGBA = sk_neon::grayA_to_RGBA;
50 grayA_to_rgbA = sk_neon::grayA_to_rgbA;
51 inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1;
52 inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1;
53 }
54 }
OLDNEW
« src/core/SkUtilsArm.h ('K') | « src/core/SkUtilsArm.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698