OLD | NEW |
---|---|
(Empty) | |
1 | |
2 #include "SkBlitMask.h" | |
3 | |
4 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig, | |
5 SkMask::Format maskFormat, | |
6 SkColor color) { | |
7 return NULL; | |
8 } | |
9 | |
10 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { | |
11 return NULL; | |
12 } | |
13 | |
14 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig, | |
15 SkMask::Format maskFormat, | |
16 RowFlags flags) { | |
17 return NULL; | |
18 } | |
OLD | NEW |