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

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

Issue 1278253003: Sk4px blit mask. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: note overflow Created 5 years, 4 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_neon.cpp ('k') | src/opts/opts_check_x86.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 sse2 10 #define SK_OPTS_NS sse2
11 #include "SkBlitMask_opts.h"
11 #include "SkBlurImageFilter_opts.h" 12 #include "SkBlurImageFilter_opts.h"
12 #include "SkMorphologyImageFilter_opts.h" 13 #include "SkMorphologyImageFilter_opts.h"
13 #include "SkUtils_opts.h" 14 #include "SkUtils_opts.h"
14 #include "SkXfermode_opts.h" 15 #include "SkXfermode_opts.h"
15 16
16 namespace SkOpts { 17 namespace SkOpts {
17 void Init_sse2() { 18 void Init_sse2() {
18 memset16 = sse2::memset16; 19 memset16 = sse2::memset16;
19 memset32 = sse2::memset32; 20 memset32 = sse2::memset32;
20 create_xfermode = SkCreate4pxXfermode; 21 create_xfermode = SkCreate4pxXfermode;
21 22
22 box_blur_xx = sse2::box_blur_xx; 23 box_blur_xx = sse2::box_blur_xx;
23 box_blur_xy = sse2::box_blur_xy; 24 box_blur_xy = sse2::box_blur_xy;
24 box_blur_yx = sse2::box_blur_yx; 25 box_blur_yx = sse2::box_blur_yx;
25 26
26 dilate_x = sse2::dilate_x; 27 dilate_x = sse2::dilate_x;
27 dilate_y = sse2::dilate_y; 28 dilate_y = sse2::dilate_y;
28 erode_x = sse2::erode_x; 29 erode_x = sse2::erode_x;
29 erode_y = sse2::erode_y; 30 erode_y = sse2::erode_y;
31
32 blit_mask_d32_a8 = sse2::blit_mask_d32_a8;
30 } 33 }
31 } 34 }
OLDNEW
« no previous file with comments | « src/opts/SkOpts_neon.cpp ('k') | src/opts/opts_check_x86.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698