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