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

Side by Side Diff: gm/lerpmode.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 | « gm/imageresizetiled.cpp ('k') | gm/lighting.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 "gm.h" 8 #include "gm.h"
9 #include "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkLerpXfermode.h" 10 #include "SkLerpXfermode.h"
11 11
12 static void show_circlelayers(SkCanvas* canvas, SkXfermode* mode) { 12 static void show_circlelayers(SkCanvas* canvas, SkXfermode* mode) {
13 SkPaint paint; 13 SkPaint paint;
14 paint.setAntiAlias(true); 14 paint.setAntiAlias(true);
15 SkRect r, bounds = { 10, 10, 110, 110 }; 15 SkRect r, bounds = { 10, 10, 110, 110 };
16 16
17 r = bounds; 17 r = bounds;
18 r.fRight = bounds.centerX(); 18 r.fRight = bounds.centerX();
19 canvas->drawRect(r, paint); 19 canvas->drawRect(r, paint);
20 20
21 canvas->saveLayer(&bounds, NULL); 21 canvas->saveLayer(&bounds, nullptr);
22 22
23 paint.setColor(0x80FF0000); 23 paint.setColor(0x80FF0000);
24 r = bounds; 24 r = bounds;
25 r.inset(20, 0); 25 r.inset(20, 0);
26 canvas->drawOval(r, paint); 26 canvas->drawOval(r, paint);
27 27
28 paint.setColor(0x800000FF); 28 paint.setColor(0x800000FF);
29 r = bounds; 29 r = bounds;
30 r.inset(0, 20); 30 r.inset(0, 20);
31 paint.setXfermode(mode); 31 paint.setXfermode(mode);
32 canvas->drawOval(r, paint); 32 canvas->drawOval(r, paint);
33 33
34 canvas->restore(); 34 canvas->restore();
35 } 35 }
36 36
37 class LerpXfermodeGM : public skiagm::GM { 37 class LerpXfermodeGM : public skiagm::GM {
38 public: 38 public:
39 LerpXfermodeGM() {} 39 LerpXfermodeGM() {}
40 40
41 protected: 41 protected:
42 SkString onShortName() override { 42 SkString onShortName() override {
43 return SkString("lerpmode"); 43 return SkString("lerpmode");
44 } 44 }
45 45
46 SkISize onISize() override { 46 SkISize onISize() override {
47 return SkISize::Make(240, 120); 47 return SkISize::Make(240, 120);
48 } 48 }
49 49
50 void onDraw(SkCanvas* canvas) override { 50 void onDraw(SkCanvas* canvas) override {
51 show_circlelayers(canvas, NULL); 51 show_circlelayers(canvas, nullptr);
52 canvas->translate(150, 0); 52 canvas->translate(150, 0);
53 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f)); 53 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f));
54 show_circlelayers(canvas, mode.get()); 54 show_circlelayers(canvas, mode.get());
55 } 55 }
56 56
57 private: 57 private:
58 typedef skiagm::GM INHERITED; 58 typedef skiagm::GM INHERITED;
59 }; 59 };
60 60
61 ////////////////////////////////////////////////////////////////////////////// 61 //////////////////////////////////////////////////////////////////////////////
62 62
63 DEF_GM(return new LerpXfermodeGM;) 63 DEF_GM(return new LerpXfermodeGM;)
OLDNEW
« no previous file with comments | « gm/imageresizetiled.cpp ('k') | gm/lighting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698