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