| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 #include "SkColor.h" | 8 #include "SkColor.h" |
| 9 #include "SkColorPriv.h" | 9 #include "SkColorPriv.h" |
| 10 #include "SkBlitMask.h" | 10 #include "SkBlitMask.h" |
| 11 #include "SkUtilsArm.h" | 11 #include "SkUtilsArm.h" |
| 12 #include "SkBlitMask_opts_arm_neon.h" | 12 #include "SkBlitMask_opts_arm_neon.h" |
| 13 | 13 |
| 14 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { | 14 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { |
| 15 if (isOpaque) { | 15 if (isOpaque) { |
| 16 return SK_ARM_NEON_WRAP(SkBlitLCD16OpaqueRow); | 16 return SK_ARM_NEON_WRAP(SkBlitLCD16OpaqueRow); |
| 17 } else { | 17 } else { |
| 18 return SK_ARM_NEON_WRAP(SkBlitLCD16Row); | 18 return SK_ARM_NEON_WRAP(SkBlitLCD16Row); |
| 19 } | 19 } |
| 20 } | 20 } |
| 21 | 21 |
| 22 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT, | 22 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT, |
| 23 SkMask::Format maskFormat, | 23 SkMask::Format maskFormat, |
| 24 RowFlags flags) { | 24 RowFlags flags) { |
| 25 return NULL; | 25 return nullptr; |
| 26 } | 26 } |
| OLD | NEW |