| OLD | NEW |
| 1 /* | |
| 2 * Copyright 2011 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 | |
| 8 #include "SkBlitRow.h" | |
| 9 #include "SkBlitMask.h" | 1 #include "SkBlitMask.h" |
| 10 | 2 |
| 11 // Platform impl of Platform_procs with no overrides | |
| 12 | 3 |
| 13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) { | 4 #if !SK_ARM_NEON_IS_NONE |
| 14 return NULL; | |
| 15 } | |
| 16 | |
| 17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { | |
| 18 return NULL; | |
| 19 } | |
| 20 | |
| 21 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { | |
| 22 return NULL; | |
| 23 } | |
| 24 | |
| 25 /////////////////////////////////////////////////////////////////////////////// | |
| 26 | 5 |
| 27 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig, | 6 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig, |
| 28 SkMask::Format maskFormat, | 7 SkMask::Format maskFormat, |
| 29 SkColor color) { | 8 SkColor color) { |
| 30 return NULL; | 9 return NULL; |
| 31 } | 10 } |
| 32 | 11 |
| 33 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { | 12 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { |
| 34 return NULL; | 13 return NULL; |
| 35 } | 14 } |
| 36 | 15 |
| 37 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig, | 16 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig, |
| 38 SkMask::Format maskFormat, | 17 SkMask::Format maskFormat, |
| 39 RowFlags flags) { | 18 RowFlags flags) { |
| 40 return NULL; | 19 return NULL; |
| 41 } | 20 } |
| 21 #endif |
| 22 |
| OLD | NEW |