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

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

Issue 1680743005: NEON Optimized RGBA->PMColor sampling in SkSwizzler (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Share implementations for sampleSize 4 and 8 Created 4 years, 10 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
« no previous file with comments | « src/core/SkOpts.cpp ('k') | src/opts/SkOpts_ssse3.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
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 #include "SkOpts.h" 8 #include "SkOpts.h"
9 9
10 #define SK_OPTS_NS sk_neon 10 #define SK_OPTS_NS sk_neon
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA; 50 RGBA_to_BGRA = sk_neon::RGBA_to_BGRA;
51 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA; 51 RGBA_to_rgbA = sk_neon::RGBA_to_rgbA;
52 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA; 52 RGBA_to_bgrA = sk_neon::RGBA_to_bgrA;
53 RGB_to_RGB1 = sk_neon::RGB_to_RGB1; 53 RGB_to_RGB1 = sk_neon::RGB_to_RGB1;
54 RGB_to_BGR1 = sk_neon::RGB_to_BGR1; 54 RGB_to_BGR1 = sk_neon::RGB_to_BGR1;
55 gray_to_RGB1 = sk_neon::gray_to_RGB1; 55 gray_to_RGB1 = sk_neon::gray_to_RGB1;
56 grayA_to_RGBA = sk_neon::grayA_to_RGBA; 56 grayA_to_RGBA = sk_neon::grayA_to_RGBA;
57 grayA_to_rgbA = sk_neon::grayA_to_rgbA; 57 grayA_to_rgbA = sk_neon::grayA_to_rgbA;
58 inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1; 58 inverted_CMYK_to_RGB1 = sk_neon::inverted_CMYK_to_RGB1;
59 inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1; 59 inverted_CMYK_to_BGR1 = sk_neon::inverted_CMYK_to_BGR1;
60 RGBA_to_rgbA_sample2 = sk_neon::RGBA_to_rgbA_sample2;
61 RGBA_to_bgrA_sample2 = sk_neon::RGBA_to_bgrA_sample2;
62 RGBA_to_rgbA_sample4 = sk_neon::RGBA_to_rgbA_sample4;
63 RGBA_to_bgrA_sample4 = sk_neon::RGBA_to_bgrA_sample4;
64 RGBA_to_rgbA_sample8 = sk_neon::RGBA_to_rgbA_sample8;
65 RGBA_to_bgrA_sample8 = sk_neon::RGBA_to_bgrA_sample8;
60 } 66 }
61 } 67 }
OLDNEW
« no previous file with comments | « src/core/SkOpts.cpp ('k') | src/opts/SkOpts_ssse3.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698