| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2009 The Android Open Source Project | 3 * Copyright 2009 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #include "SkBlitRow.h" | 10 #include "SkBlitRow.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 const SkPMColor* SK_RESTRICT src, | 21 const SkPMColor* SK_RESTRICT src, |
| 22 int count, U8CPU alpha); | 22 int count, U8CPU alpha); |
| 23 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask, | 23 void SkARGB32_A8_BlitMask_SSE2(void* device, size_t dstRB, const void* mask, |
| 24 size_t maskRB, SkColor color, | 24 size_t maskRB, SkColor color, |
| 25 int width, int height); | 25 int width, int height); |
| 26 | 26 |
| 27 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[], | 27 void SkBlitLCD16Row_SSE2(SkPMColor dst[], const uint16_t src[], |
| 28 SkColor color, int width, SkPMColor); | 28 SkColor color, int width, SkPMColor); |
| 29 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], | 29 void SkBlitLCD16OpaqueRow_SSE2(SkPMColor dst[], const uint16_t src[], |
| 30 SkColor color, int width, SkPMColor opaqueDst); | 30 SkColor color, int width, SkPMColor opaqueDst); |
| 31 |
| 32 void S32A_D565_Opaque_SSE2(uint16_t* SK_RESTRICT dst, |
| 33 const SkPMColor* SK_RESTRICT src, |
| 34 int count, U8CPU alpha, int /*x*/, int /*y*/); |
| OLD | NEW |