| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |