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

Side by Side Diff: src/effects/SkOffsetImageFilter.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/SkMorphologyImageFilter.cpp ('k') | src/effects/SkPerlinNoiseShader.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 2012 The Android Open Source Project 2 * Copyright 2012 The Android Open Source Project
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 "SkOffsetImageFilter.h" 8 #include "SkOffsetImageFilter.h"
9 #include "SkBitmap.h" 9 #include "SkBitmap.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 29 matching lines...) Expand all
40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) { 40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
41 return false; 41 return false;
42 } 42 }
43 43
44 SkIRect bounds; 44 SkIRect bounds;
45 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) { 45 if (!this->applyCropRect(ctx, src, srcOffset, &bounds)) {
46 return false; 46 return false;
47 } 47 }
48 48
49 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bo unds.height())); 49 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(), bo unds.height()));
50 if (NULL == device.get()) { 50 if (nullptr == device.get()) {
51 return false; 51 return false;
52 } 52 }
53 SkCanvas canvas(device); 53 SkCanvas canvas(device);
54 SkPaint paint; 54 SkPaint paint;
55 paint.setXfermodeMode(SkXfermode::kSrc_Mode); 55 paint.setXfermodeMode(SkXfermode::kSrc_Mode);
56 canvas.translate(SkIntToScalar(srcOffset.fX - bounds.fLeft), 56 canvas.translate(SkIntToScalar(srcOffset.fX - bounds.fLeft),
57 SkIntToScalar(srcOffset.fY - bounds.fTop)); 57 SkIntToScalar(srcOffset.fY - bounds.fTop));
58 SkVector vec; 58 SkVector vec;
59 ctx.ctm().mapVectors(&vec, &fOffset, 1); 59 ctx.ctm().mapVectors(&vec, &fOffset, 1);
60 canvas.drawBitmap(src, vec.x(), vec.y(), &paint); 60 canvas.drawBitmap(src, vec.x(), vec.y(), &paint);
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 void SkOffsetImageFilter::toString(SkString* str) const { 113 void SkOffsetImageFilter::toString(SkString* str) const {
114 str->appendf("SkOffsetImageFilter: ("); 114 str->appendf("SkOffsetImageFilter: (");
115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY); 115 str->appendf("offset: (%f, %f) ", fOffset.fX, fOffset.fY);
116 str->append("input: ("); 116 str->append("input: (");
117 if (this->getInput(0)) { 117 if (this->getInput(0)) {
118 this->getInput(0)->toString(str); 118 this->getInput(0)->toString(str);
119 } 119 }
120 str->append("))"); 120 str->append("))");
121 } 121 }
122 #endif 122 #endif
OLDNEW
« no previous file with comments | « src/effects/SkMorphologyImageFilter.cpp ('k') | src/effects/SkPerlinNoiseShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698