Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: src/opts/SkBlitRow_opts_none.cpp

Issue 21120007: ARM Skia NEON patches - 15 - Preparation work for Blitmask optims (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Revised version Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/opts/SkBlitRow_opts_arm.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkBlitRow.h" 8 #include "SkBlitRow.h"
9 #include "SkBlitMask.h"
10 9
11 // Platform impl of Platform_procs with no overrides 10 // Platform impl of Platform_procs with no overrides
12 11
13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) { 12 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
14 return NULL; 13 return NULL;
15 } 14 }
16 15
17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { 16 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
18 return NULL; 17 return NULL;
19 } 18 }
20 19
21 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { 20 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
22 return NULL; 21 return NULL;
23 } 22 }
24 23
25 SkBlitRow::ColorRectProc PlatformColorRectProcFactory() { 24 SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
26 return NULL; 25 return NULL;
27 } 26 }
28 27
29 ///////////////////////////////////////////////////////////////////////////////
30
31 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig,
32 SkMask::Format maskFormat,
33 SkColor color) {
34 return NULL;
35 }
36
37 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
38 return NULL;
39 }
40
41 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig,
42 SkMask::Format maskFormat,
43 RowFlags flags) {
44 return NULL;
45 }
OLDNEW
« no previous file with comments | « src/opts/SkBlitRow_opts_arm.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698