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

Side by Side Diff: src/effects/SkDropShadowImageFilter.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/effects/SkDisplacementMapEffect.cpp ('k') | src/effects/SkEmbossMaskFilter.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 2013 Google Inc. 2 * Copyright 2013 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 "SkDropShadowImageFilter.h" 8 #include "SkDropShadowImageFilter.h"
9 9
10 #include "SkBitmap.h" 10 #include "SkBitmap.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 SkIPoint srcOffset = SkIPoint::Make(0, 0); 61 SkIPoint srcOffset = SkIPoint::Make(0, 0);
62 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO ffset)) 62 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcO ffset))
63 return false; 63 return false;
64 64
65 SkIRect bounds; 65 SkIRect bounds;
66 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { 66 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) {
67 return false; 67 return false;
68 } 68 }
69 69
70 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds .height())); 70 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bounds .height()));
71 if (NULL == device.get()) { 71 if (nullptr == device.get()) {
72 return false; 72 return false;
73 } 73 }
74 SkCanvas canvas(device.get()); 74 SkCanvas canvas(device.get());
75 75
76 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY); 76 SkVector sigma = SkVector::Make(fSigmaX, fSigmaY);
77 ctx.ctm().mapVectors(&sigma, 1); 77 ctx.ctm().mapVectors(&sigma, 1);
78 sigma.fX = SkMaxScalar(0, sigma.fX); 78 sigma.fX = SkMaxScalar(0, sigma.fX);
79 sigma.fY = SkMaxScalar(0, sigma.fY); 79 sigma.fY = SkMaxScalar(0, sigma.fY);
80 SkAutoTUnref<SkImageFilter> blurFilter(SkBlurImageFilter::Create(sigma.fX, s igma.fY)); 80 SkAutoTUnref<SkImageFilter> blurFilter(SkBlurImageFilter::Create(sigma.fX, s igma.fY));
81 SkAutoTUnref<SkColorFilter> colorFilter( 81 SkAutoTUnref<SkColorFilter> colorFilter(
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "kDrawShadowAndForeground", "kDrawShadowOnly" 153 "kDrawShadowAndForeground", "kDrawShadowOnly"
154 }; 154 };
155 155
156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat ch"); 156 static_assert(kShadowModeCount == SK_ARRAY_COUNT(gModeStrings), "enum_mismat ch");
157 157
158 str->appendf(" mode: %s", gModeStrings[fShadowMode]); 158 str->appendf(" mode: %s", gModeStrings[fShadowMode]);
159 159
160 str->append(")"); 160 str->append(")");
161 } 161 }
162 #endif 162 #endif
OLDNEW
« no previous file with comments | « src/effects/SkDisplacementMapEffect.cpp ('k') | src/effects/SkEmbossMaskFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698