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

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

Issue 2145833002: Update SkOpts namespaces. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: static, just in case Created 4 years, 5 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/opts/SkOpts_sse41.cpp ('k') | tests/SkBlend_optsTest.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 #define SK_OPTS_NS sk_ssse3 9 #define SK_OPTS_NS ssse3
10 #include "SkBlitMask_opts.h" 10 #include "SkBlitMask_opts.h"
11 #include "SkColorCubeFilter_opts.h" 11 #include "SkColorCubeFilter_opts.h"
12 #include "SkSwizzler_opts.h" 12 #include "SkSwizzler_opts.h"
13 #include "SkXfermode_opts.h" 13 #include "SkXfermode_opts.h"
14 14
15 namespace SkOpts { 15 namespace SkOpts {
16 void Init_ssse3() { 16 void Init_ssse3() {
17 create_xfermode = sk_ssse3::create_xfermode; 17 create_xfermode = ssse3::create_xfermode;
18 blit_mask_d32_a8 = sk_ssse3::blit_mask_d32_a8; 18 blit_mask_d32_a8 = ssse3::blit_mask_d32_a8;
19 color_cube_filter_span = sk_ssse3::color_cube_filter_span; 19 color_cube_filter_span = ssse3::color_cube_filter_span;
20 20
21 RGBA_to_BGRA = sk_ssse3::RGBA_to_BGRA; 21 RGBA_to_BGRA = ssse3::RGBA_to_BGRA;
22 RGBA_to_rgbA = sk_ssse3::RGBA_to_rgbA; 22 RGBA_to_rgbA = ssse3::RGBA_to_rgbA;
23 RGBA_to_bgrA = sk_ssse3::RGBA_to_bgrA; 23 RGBA_to_bgrA = ssse3::RGBA_to_bgrA;
24 RGB_to_RGB1 = sk_ssse3::RGB_to_RGB1; 24 RGB_to_RGB1 = ssse3::RGB_to_RGB1;
25 RGB_to_BGR1 = sk_ssse3::RGB_to_BGR1; 25 RGB_to_BGR1 = ssse3::RGB_to_BGR1;
26 gray_to_RGB1 = sk_ssse3::gray_to_RGB1; 26 gray_to_RGB1 = ssse3::gray_to_RGB1;
27 grayA_to_RGBA = sk_ssse3::grayA_to_RGBA; 27 grayA_to_RGBA = ssse3::grayA_to_RGBA;
28 grayA_to_rgbA = sk_ssse3::grayA_to_rgbA; 28 grayA_to_rgbA = ssse3::grayA_to_rgbA;
29 inverted_CMYK_to_RGB1 = sk_ssse3::inverted_CMYK_to_RGB1; 29 inverted_CMYK_to_RGB1 = ssse3::inverted_CMYK_to_RGB1;
30 inverted_CMYK_to_BGR1 = sk_ssse3::inverted_CMYK_to_BGR1; 30 inverted_CMYK_to_BGR1 = ssse3::inverted_CMYK_to_BGR1;
31 } 31 }
32 } 32 }
OLDNEW
« no previous file with comments | « src/opts/SkOpts_sse41.cpp ('k') | tests/SkBlend_optsTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698