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

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

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 3 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
« no previous file with comments | « src/opts/SkBitmapProcState_opts_mips_dsp.cpp ('k') | src/opts/SkBlitMask_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 2014 Google Inc. 2 * Copyright 2014 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 "SkColor.h" 8 #include "SkColor.h"
9 #include "SkColorPriv.h" 9 #include "SkColorPriv.h"
10 #include "SkBlitMask.h" 10 #include "SkBlitMask.h"
11 #include "SkUtilsArm.h" 11 #include "SkUtilsArm.h"
12 #include "SkBlitMask_opts_arm_neon.h" 12 #include "SkBlitMask_opts_arm_neon.h"
13 13
14 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) { 14 SkBlitMask::BlitLCD16RowProc SkBlitMask::PlatformBlitRowProcs16(bool isOpaque) {
15 if (isOpaque) { 15 if (isOpaque) {
16 return SK_ARM_NEON_WRAP(SkBlitLCD16OpaqueRow); 16 return SK_ARM_NEON_WRAP(SkBlitLCD16OpaqueRow);
17 } else { 17 } else {
18 return SK_ARM_NEON_WRAP(SkBlitLCD16Row); 18 return SK_ARM_NEON_WRAP(SkBlitLCD16Row);
19 } 19 }
20 } 20 }
21 21
22 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT, 22 SkBlitMask::RowProc SkBlitMask::PlatformRowProcs(SkColorType dstCT,
23 SkMask::Format maskFormat, 23 SkMask::Format maskFormat,
24 RowFlags flags) { 24 RowFlags flags) {
25 return NULL; 25 return nullptr;
26 } 26 }
OLDNEW
« no previous file with comments | « src/opts/SkBitmapProcState_opts_mips_dsp.cpp ('k') | src/opts/SkBlitMask_opts_none.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698