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

Side by Side Diff: gm/getpostextpath.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/gammatext.cpp ('k') | gm/giantbitmap.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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkPaint.h" 10 #include "SkPaint.h"
11 #include "SkRandom.h" 11 #include "SkRandom.h"
12 #include "SkTemplates.h" 12 #include "SkTemplates.h"
13 13
14 class GetPosTextPathGM : public skiagm::GM { 14 class GetPosTextPathGM : public skiagm::GM {
15 public: 15 public:
16 GetPosTextPathGM() {} 16 GetPosTextPathGM() {}
17 17
18 protected: 18 protected:
19 19
20 SkString onShortName() SK_OVERRIDE { 20 SkString onShortName() override {
21 return SkString("getpostextpath"); 21 return SkString("getpostextpath");
22 } 22 }
23 23
24 SkISize onISize() SK_OVERRIDE { return SkISize::Make(480, 780); } 24 SkISize onISize() override { return SkISize::Make(480, 780); }
25 25
26 static void strokePath(SkCanvas* canvas, const SkPath& path) { 26 static void strokePath(SkCanvas* canvas, const SkPath& path) {
27 SkPaint paint; 27 SkPaint paint;
28 paint.setAntiAlias(true); 28 paint.setAntiAlias(true);
29 paint.setColor(SK_ColorRED); 29 paint.setColor(SK_ColorRED);
30 paint.setStyle(SkPaint::kStroke_Style); 30 paint.setStyle(SkPaint::kStroke_Style);
31 canvas->drawPath(path, paint); 31 canvas->drawPath(path, paint);
32 } 32 }
33 33
34 void onDraw(SkCanvas* canvas) SK_OVERRIDE { 34 void onDraw(SkCanvas* canvas) override {
35 // explicitly add spaces, to test a prev. bug 35 // explicitly add spaces, to test a prev. bug
36 const char* text = "Ham bur ge fons"; 36 const char* text = "Ham bur ge fons";
37 int len = SkToInt(strlen(text)); 37 int len = SkToInt(strlen(text));
38 SkPath path; 38 SkPath path;
39 39
40 SkPaint paint; 40 SkPaint paint;
41 paint.setAntiAlias(true); 41 paint.setAntiAlias(true);
42 sk_tool_utils::set_portable_typeface(&paint); 42 sk_tool_utils::set_portable_typeface(&paint);
43 paint.setTextSize(SkIntToScalar(48)); 43 paint.setTextSize(SkIntToScalar(48));
44 44
(...skipping 21 matching lines...) Expand all
66 canvas->drawPosText(text, len, &pos[0], paint); 66 canvas->drawPosText(text, len, &pos[0], paint);
67 paint.getPosTextPath(text, len, &pos[0], &path); 67 paint.getPosTextPath(text, len, &pos[0], &path);
68 strokePath(canvas, path); 68 strokePath(canvas, path);
69 } 69 }
70 }; 70 };
71 71
72 ////////////////////////////////////////////////////////////////////////////// 72 //////////////////////////////////////////////////////////////////////////////
73 73
74 static skiagm::GM* F(void*) { return new GetPosTextPathGM; } 74 static skiagm::GM* F(void*) { return new GetPosTextPathGM; }
75 static skiagm::GMRegistry gR(F); 75 static skiagm::GMRegistry gR(F);
OLDNEW
« no previous file with comments | « gm/gammatext.cpp ('k') | gm/giantbitmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698