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

Side by Side Diff: gm/imagemagnifier.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/imagefromyuvtextures.cpp ('k') | gm/imageresizetiled.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 Google Inc. 2 * Copyright 2012 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 "SkMagnifierImageFilter.h" 9 #include "SkMagnifierImageFilter.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
(...skipping 20 matching lines...) Expand all
31 } 31 }
32 32
33 void onDraw(SkCanvas* canvas) override { 33 void onDraw(SkCanvas* canvas) override {
34 SkPaint filterPaint; 34 SkPaint filterPaint;
35 filterPaint.setImageFilter( 35 filterPaint.setImageFilter(
36 SkMagnifierImageFilter::Create( 36 SkMagnifierImageFilter::Create(
37 SkRect::MakeXYWH(SkIntToScalar(100), SkIntToScalar(100), 37 SkRect::MakeXYWH(SkIntToScalar(100), SkIntToScalar(100),
38 SkIntToScalar(WIDTH / 2), 38 SkIntToScalar(WIDTH / 2),
39 SkIntToScalar(HEIGHT / 2)), 39 SkIntToScalar(HEIGHT / 2)),
40 100))->unref(); 40 100))->unref();
41 canvas->saveLayer(NULL, &filterPaint); 41 canvas->saveLayer(nullptr, &filterPaint);
42 const char* str = "The quick brown fox jumped over the lazy dog."; 42 const char* str = "The quick brown fox jumped over the lazy dog.";
43 SkRandom rand; 43 SkRandom rand;
44 for (int i = 0; i < 25; ++i) { 44 for (int i = 0; i < 25; ++i) {
45 int x = rand.nextULessThan(WIDTH); 45 int x = rand.nextULessThan(WIDTH);
46 int y = rand.nextULessThan(HEIGHT); 46 int y = rand.nextULessThan(HEIGHT);
47 SkPaint paint; 47 SkPaint paint;
48 sk_tool_utils::set_portable_typeface(&paint); 48 sk_tool_utils::set_portable_typeface(&paint);
49 paint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0xFF0 00000)); 49 paint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0xFF0 00000));
50 paint.setTextSize(rand.nextRangeScalar(0, 300)); 50 paint.setTextSize(rand.nextRangeScalar(0, 300));
51 paint.setAntiAlias(true); 51 paint.setAntiAlias(true);
52 canvas->drawText(str, strlen(str), SkIntToScalar(x), 52 canvas->drawText(str, strlen(str), SkIntToScalar(x),
53 SkIntToScalar(y), paint); 53 SkIntToScalar(y), paint);
54 } 54 }
55 canvas->restore(); 55 canvas->restore();
56 } 56 }
57 57
58 private: 58 private:
59 typedef GM INHERITED; 59 typedef GM INHERITED;
60 }; 60 };
61 61
62 ////////////////////////////////////////////////////////////////////////////// 62 //////////////////////////////////////////////////////////////////////////////
63 63
64 static GM* MyFactory(void*) { return new ImageMagnifierGM; } 64 static GM* MyFactory(void*) { return new ImageMagnifierGM; }
65 static GMRegistry reg(MyFactory); 65 static GMRegistry reg(MyFactory);
66 66
67 } 67 }
OLDNEW
« no previous file with comments | « gm/imagefromyuvtextures.cpp ('k') | gm/imageresizetiled.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698