96fcdcc219
DOCS_PREVIEW= https://skia.org/?cl=1316233002 Review URL: https://codereview.chromium.org/1316233002
19 lines
507 B
C++
19 lines
507 B
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "SkBlitMask.h"
|
|
|
|
SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
|
|
return nullptr;
|
|
}
|
|
|
|
SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
|
|
SkMask::Format maskFormat,
|
|
RowFlags flags) {
|
|
return nullptr;
|
|
}
|