blob: 64066f2047d7cd840413f7d0f0a8df0b80c355d2 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
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 */
reed@google.com58af9a62011-10-12 13:43:52 +00007
reed@android.com7d2e3222009-07-30 02:22:31 +00008#include "SkBlitRow.h"
9
10// Platform impl of Platform_procs with no overrides
11
reed@android.comf0f4e9a2009-11-13 19:00:49 +000012SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
senorblanco@chromium.org92727612009-11-04 20:51:06 +000013 return NULL;
14}
reed@android.com7d2e3222009-07-30 02:22:31 +000015
reed@android.comf0f4e9a2009-11-13 19:00:49 +000016SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
senorblanco@chromium.org92727612009-11-04 20:51:06 +000017 return NULL;
18}
senorblanco@chromium.orgc3856382010-12-13 15:27:20 +000019
20SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
21 return NULL;
22}
reed@google.com981d4792011-03-09 12:55:47 +000023
commit-bot@chromium.org89c43e82013-07-10 13:55:46 +000024SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
25 return NULL;
26}