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

Side by Side Diff: gm/imageblur.cpp

Issue 1037793002: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: git cl web Created 5 years, 9 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/imagealphathreshold.cpp ('k') | gm/imageblur2.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 2011 Google Inc. 2 * Copyright 2011 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 "SkBlurImageFilter.h" 9 #include "SkBlurImageFilter.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 11
12 #define WIDTH 500 12 #define WIDTH 500
13 #define HEIGHT 500 13 #define HEIGHT 500
14 14
15 namespace skiagm { 15 namespace skiagm {
16 16
17 class ImageBlurGM : public GM { 17 class ImageBlurGM : public GM {
18 public: 18 public:
19 ImageBlurGM(SkScalar sigmaX, SkScalar sigmaY, const char* suffix) 19 ImageBlurGM(SkScalar sigmaX, SkScalar sigmaY, const char* suffix)
20 : fSigmaX(sigmaX), fSigmaY(sigmaY) { 20 : fSigmaX(sigmaX), fSigmaY(sigmaY) {
21 this->setBGColor(0xFF000000); 21 this->setBGColor(0xFF000000);
22 fName.printf("imageblur%s", suffix); 22 fName.printf("imageblur%s", suffix);
23 } 23 }
24 24
25 protected: 25 protected:
26 26
27 SkString onShortName() SK_OVERRIDE { 27 SkString onShortName() override {
28 return fName; 28 return fName;
29 } 29 }
30 30
31 SkISize onISize() SK_OVERRIDE { 31 SkISize onISize() override {
32 return SkISize::Make(WIDTH, HEIGHT); 32 return SkISize::Make(WIDTH, HEIGHT);
33 } 33 }
34 34
35 void onDraw(SkCanvas* canvas) SK_OVERRIDE { 35 void onDraw(SkCanvas* canvas) override {
36 SkPaint paint; 36 SkPaint paint;
37 paint.setImageFilter(SkBlurImageFilter::Create(fSigmaX, fSigmaY))->unref (); 37 paint.setImageFilter(SkBlurImageFilter::Create(fSigmaX, fSigmaY))->unref ();
38 canvas->saveLayer(NULL, &paint); 38 canvas->saveLayer(NULL, &paint);
39 const char* str = "The quick brown fox jumped over the lazy dog."; 39 const char* str = "The quick brown fox jumped over the lazy dog.";
40 40
41 SkRandom rand; 41 SkRandom rand;
42 SkPaint textPaint; 42 SkPaint textPaint;
43 textPaint.setAntiAlias(true); 43 textPaint.setAntiAlias(true);
44 sk_tool_utils::set_portable_typeface(&textPaint); 44 sk_tool_utils::set_portable_typeface(&textPaint);
45 for (int i = 0; i < 25; ++i) { 45 for (int i = 0; i < 25; ++i) {
(...skipping 17 matching lines...) Expand all
63 63
64 ////////////////////////////////////////////////////////////////////////////// 64 //////////////////////////////////////////////////////////////////////////////
65 65
66 static GM* MyFactory1(void*) { return new ImageBlurGM(24.0f, 0.0f, ""); } 66 static GM* MyFactory1(void*) { return new ImageBlurGM(24.0f, 0.0f, ""); }
67 static GMRegistry reg1(MyFactory1); 67 static GMRegistry reg1(MyFactory1);
68 68
69 static GM* MyFactory2(void*) { return new ImageBlurGM(80.0f, 80.0f, "_large"); } 69 static GM* MyFactory2(void*) { return new ImageBlurGM(80.0f, 80.0f, "_large"); }
70 static GMRegistry reg2(MyFactory2); 70 static GMRegistry reg2(MyFactory2);
71 71
72 } 72 }
OLDNEW
« no previous file with comments | « gm/imagealphathreshold.cpp ('k') | gm/imageblur2.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698