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