Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2013 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 SkBlitRow_opts_SSE4_DEFINED | |
| 9 #define SkBlitRow_opts_SSE4_DEFINED | |
| 10 | |
| 11 #include "SkBlitRow.h" | |
| 12 | |
| 13 #if !defined(_MSC_VER) | |
| 14 extern "C" void S32A_Opaque_BlitRow32_SSE4_asm(SkPMColor* SK_RESTRICT dst, | |
| 15 const SkPMColor* SK_RESTRICT src, | |
| 16 int count, U8CPU alpha); | |
| 17 #endif | |
| 18 | |
| 19 #endif | |
| 20 | |
| OLD | NEW |