| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 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 SkBlitMask_opts_arm_neon_DEFINED | 8 #ifndef SkBlitMask_opts_arm_neon_DEFINED |
| 9 #define SkBlitMask_opts_arm_neon_DEFINED | 9 #define SkBlitMask_opts_arm_neon_DEFINED |
| 10 | 10 |
| 11 #include "SkColor.h" | 11 #include "SkColor.h" |
| 12 #include "SkBlitMask.h" | 12 #include "SkBlitMask.h" |
| 13 | 13 |
| 14 extern SkBlitMask::ColorProc D32_A8_Factory_neon(SkColor color); | |
| 15 | |
| 16 extern void SkBlitLCD16OpaqueRow_neon(SkPMColor dst[], const uint16_t src[], | 14 extern void SkBlitLCD16OpaqueRow_neon(SkPMColor dst[], const uint16_t src[], |
| 17 SkColor color, int width, | 15 SkColor color, int width, |
| 18 SkPMColor opaqueDst); | 16 SkPMColor opaqueDst); |
| 19 | 17 |
| 20 extern void SkBlitLCD16Row_neon(SkPMColor dst[], const uint16_t src[], | 18 extern void SkBlitLCD16Row_neon(SkPMColor dst[], const uint16_t src[], |
| 21 SkColor color, int width, SkPMColor); | 19 SkColor color, int width, SkPMColor); |
| 22 | 20 |
| 23 #endif // #ifndef SkBlitMask_opts_arm_neon_DEFINED | 21 #endif // #ifndef SkBlitMask_opts_arm_neon_DEFINED |
| OLD | NEW |