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

Side by Side Diff: src/opts/SkBlitRow_opts_SSE2.h

Issue 264603002: Cleanup of SSE optimization files. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Added chromium sync patch Created 6 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
« no previous file with comments | « src/opts/SkBlitRect_opts_SSE2.cpp ('k') | src/opts/SkBlitRow_opts_SSE2.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
2 /* 1 /*
3 * Copyright 2009 The Android Open Source Project 2 * Copyright 2009 The Android Open Source Project
4 * 3 *
5 * 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
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
8 #ifndef SkBlitRow_opts_SSE2_DEFINED
9 #define SkBlitRow_opts_SSE2_DEFINED
9 10
10 #include "SkBlitRow.h" 11 #include "SkBlitRow.h"
11 12
12 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, 13 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
13 const SkPMColor* SK_RESTRICT src, 14 const SkPMColor* SK_RESTRICT src,
14 int count, U8CPU alpha); 15 int count, U8CPU alpha);
15 16
16 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, 17 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
17 const SkPMColor* SK_RESTRICT src, 18 const SkPMColor* SK_RESTRICT src,
18 int count, U8CPU alpha); 19 int count, U8CPU alpha);
(...skipping 15 matching lines...) Expand all
34 U8CPU alpha, int /*x*/, int /*y*/); 35 U8CPU alpha, int /*x*/, int /*y*/);
35 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, 36 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
36 const SkPMColor* SK_RESTRICT src, 37 const SkPMColor* SK_RESTRICT src,
37 int count, U8CPU alpha, int /*x*/, int /*y*/); 38 int count, U8CPU alpha, int /*x*/, int /*y*/);
38 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, 39 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
39 const SkPMColor* SK_RESTRICT src, 40 const SkPMColor* SK_RESTRICT src,
40 int count, U8CPU alpha, int x, int y); 41 int count, U8CPU alpha, int x, int y);
41 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, 42 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
42 const SkPMColor* SK_RESTRICT src, 43 const SkPMColor* SK_RESTRICT src,
43 int count, U8CPU alpha, int x, int y); 44 int count, U8CPU alpha, int x, int y);
45
46 #endif
OLDNEW
« no previous file with comments | « src/opts/SkBlitRect_opts_SSE2.cpp ('k') | src/opts/SkBlitRow_opts_SSE2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698