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

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

Issue 18314005: ARM Skia NEON patches - 05 - Cleaning (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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 | « no previous file | src/opts/SkUtils_opts_none.cpp » ('j') | 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" 9 #include "SkBlitMask.h"
10 10
11 // Platform impl of Platform_procs with no overrides 11 // Platform impl of Platform_procs with no overrides
12 12
13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) { 13 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
14 return NULL; 14 return NULL;
15 } 15 }
16 16
17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) { 17 SkBlitRow::Proc32 SkBlitRow::PlatformProcs32(unsigned flags) {
18 return NULL; 18 return NULL;
19 } 19 }
20 20
21 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() { 21 SkBlitRow::ColorProc SkBlitRow::PlatformColorProc() {
22 return NULL; 22 return NULL;
23 } 23 }
24 24
25 SkBlitRow::ColorRectProc PlatformColorRectProcFactory() {
26 return NULL;
27 }
28
25 /////////////////////////////////////////////////////////////////////////////// 29 ///////////////////////////////////////////////////////////////////////////////
26 30
27 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig, 31 SkBlitMask::ColorProc SkBlitMask::PlatformColorProcs(SkBitmap::Config dstConfig,
28 SkMask::Format maskFormat, 32 SkMask::Format maskFormat,
29 SkColor color) { 33 SkColor color) {
30 return NULL; 34 return NULL;
31 } 35 }
32 36
33 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { 37 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
34 return NULL; 38 return NULL;
35 } 39 }
36 40
37 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig, 41 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkBitmap::Config dstConfig,
38 SkMask::Format maskFormat, 42 SkMask::Format maskFormat,
39 RowFlags flags) { 43 RowFlags flags) {
40 return NULL; 44 return NULL;
41 } 45 }
OLDNEW
« no previous file with comments | « no previous file | src/opts/SkUtils_opts_none.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698