1/*
2 * Copyright 2014 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 "SkColor.h"
9#include "SkColorData.h"
10#include "SkBlitMask.h"
11#include "SkUtilsArm.h"
12#include "SkBlitMask_opts_arm_neon.h"
13
14SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
15    if (isOpaque) {
16        return SK_ARM_NEON_WRAP(SkBlitLCD16OpaqueRow);
17    } else {
18        return SK_ARM_NEON_WRAP(SkBlitLCD16Row);
19    }
20}
21
22SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
23                                                 SkMask::Format maskFormat,
24                                                 RowFlags flags) {
25    return nullptr;
26}
27