2014-05-29 15:57:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2013-08-28 15:07:58 +00:00
|
|
|
|
|
|
|
#include "SkBlitMask.h"
|
|
|
|
|
|
|
|
SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
|
2015-08-27 14:41:13 +00:00
|
|
|
return nullptr;
|
2013-08-28 15:07:58 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 15:57:47 +00:00
|
|
|
SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
|
2013-08-28 15:07:58 +00:00
|
|
|
SkMask::Format maskFormat,
|
|
|
|
RowFlags flags) {
|
2015-08-27 14:41:13 +00:00
|
|
|
return nullptr;
|
2013-08-28 15:07:58 +00:00
|
|
|
}
|