Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2009 The Android Open Source Project | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 #ifndef SkUtils_opts_SSE2_DEFINED | |
| 9 #define SkUtils_opts_SSE2_DEFINED | |
| 10 | |
| 11 #include "SkTypes.h" | |
| 12 | |
| 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); | |
| 15 | |
| 16 #endif | |
| OLD | NEW |