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