| 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 SkUtils_opts_SSE2_DEFINED | 8 #ifndef SkUtils_opts_SSE2_DEFINED |
| 9 #define SkUtils_opts_SSE2_DEFINED | 9 #define SkUtils_opts_SSE2_DEFINED |
| 10 | 10 |
| 11 #include "SkTypes.h" | 11 #include "SkTypes.h" |
| 12 | 12 |
| 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count); | 13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count); |
| 14 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count); | 14 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count); |
| 15 void sk_memcpy32_SSE2(uint32_t *dst, const uint32_t *src, int count); | |
| 16 | 15 |
| 17 #endif | 16 #endif |
| OLD | NEW |