| OLD | NEW |
| 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, | 17 void S32A_Opaque_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, |
| 18 const SkPMColor* SK_RESTRICT src, | 18 const SkPMColor* SK_RESTRICT src, |
| 19 int count, U8CPU alpha); | 19 int count, U8CPU alpha); |
| 20 | 20 |
| 21 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, | 21 void S32A_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst, |
| 22 const SkPMColor* SK_RESTRICT src, | 22 const SkPMColor* SK_RESTRICT src, |
| 23 int count, U8CPU alpha); | 23 int count, U8CPU alpha); |
| 24 | 24 |
| 25 void Color32_SSE2(SkPMColor dst[], const SkPMColor src[], int count, | |
| 26 SkPMColor color); | |
| 27 void Color32A_D565_SSE2(uint16_t dst[], SkPMColor src, int count, int x, | 25 void Color32A_D565_SSE2(uint16_t dst[], SkPMColor src, int count, int x, |
| 28 int y); | 26 int y); |
| 29 | 27 |
| 30 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask, | 28 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask, |
| 31 size_t maskRB, SkColor color, | 29 size_t maskRB, SkColor color, |
| 32 int width, int height); | 30 int width, int height); |
| 33 | 31 |
| 34 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[], | 32 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[], |
| 35 SkColor color, int width, SkPMColor); | 33 SkColor color, int width, SkPMColor); |
| 36 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], | 34 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], |
| 37 SkColor color, int width, SkPMColor opaqueDst); | 35 SkColor color, int width, SkPMColor opaqueDst); |
| 38 | 36 |
| 39 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, | 37 void S32_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, |
| 40 const SkPMColor* SK_RESTRICT src, int count, | 38 const SkPMColor* SK_RESTRICT src, int count, |
| 41 U8CPU alpha, int /*x*/, int /*y*/); | 39 U8CPU alpha, int /*x*/, int /*y*/); |
| 42 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, | 40 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, |
| 43 const SkPMColor* SK_RESTRICT src, | 41 const SkPMColor* SK_RESTRICT src, |
| 44 int count, U8CPU alpha, int /*x*/, int /*y*/); | 42 int count, U8CPU alpha, int /*x*/, int /*y*/); |
| 45 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, | 43 void S32_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, |
| 46 const SkPMColor* SK_RESTRICT src, | 44 const SkPMColor* SK_RESTRICT src, |
| 47 int count, U8CPU alpha, int x, int y); | 45 int count, U8CPU alpha, int x, int y); |
| 48 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, | 46 void S32A_D565_Opaque_Dither_SSE2(uint16_t* SK_RESTRICT dst, |
| 49 const SkPMColor* SK_RESTRICT src, | 47 const SkPMColor* SK_RESTRICT src, |
| 50 int count, U8CPU alpha, int x, int y); | 48 int count, U8CPU alpha, int x, int y); |
| 51 #endif | 49 #endif |
| OLD | NEW |