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

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

Issue 1820313002: Port S32A_opaque blit row to SkOpts. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fmt Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright 2009 The Android Open Source Project 2 * Copyright 2009 The Android Open Source Project
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 #ifndef SkBlitRow_opts_SSE2_DEFINED 8 #ifndef SkBlitRow_opts_SSE2_DEFINED
9 #define SkBlitRow_opts_SSE2_DEFINED 9 #define SkBlitRow_opts_SSE2_DEFINED
10 10
11 #include "SkBlitRow.h" 11 #include "SkBlitRow.h"
12 12
13 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, 13 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
14 const SkPMColor* SK_RESTRICT src, 14 const SkPMColor* SK_RESTRICT src,
15 int count, U8CPU alpha); 15 int count, U8CPU alpha);
16 16
17 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
18 const SkPMColor* SK_RESTRICT src,
19 int count, U8CPU alpha);
20
21 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, 17 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
22 const SkPMColor* SK_RESTRICT src, 18 const SkPMColor* SK_RESTRICT src,
23 int count, U8CPU alpha); 19 int count, U8CPU alpha);
24 20
25 void Color32A_D565_SSE2(uint16_t dst[], SkPMColor src, int count, int x, 21 void Color32A_D565_SSE2(uint16_t dst[], SkPMColor src, int count, int x,
26 int y); 22 int y);
27 23
28 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[], 24 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[],
29 SkColor color, int width, SkPMColor); 25 SkColor color, int width, SkPMColor);
30 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], 26 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[],
31 SkColor color, int width, SkPMColor opaqueDst); 27 SkColor color, int width, SkPMColor opaqueDst);
32 28
33 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, 29 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
34 const SkPMColor* SK_RESTRICT src, int count, 30 const SkPMColor* SK_RESTRICT src, int count,
35 U8CPU alpha, int /*x*/, int /*y*/); 31 U8CPU alpha, int /*x*/, int /*y*/);
36 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, 32 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst,
37 const SkPMColor* SK_RESTRICT src, 33 const SkPMColor* SK_RESTRICT src,
38 int count, U8CPU alpha, int /*x*/, int /*y*/); 34 int count, U8CPU alpha, int /*x*/, int /*y*/);
39 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, 35 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
40 const SkPMColor* SK_RESTRICT src, 36 const SkPMColor* SK_RESTRICT src,
41 int count, U8CPU alpha, int x, int y); 37 int count, U8CPU alpha, int x, int y);
42 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, 38 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst,
43 const SkPMColor* SK_RESTRICT src, 39 const SkPMColor* SK_RESTRICT src,
44 int count, U8CPU alpha, int x, int y); 40 int count, U8CPU alpha, int x, int y);
45 #endif 41 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698