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

Side by Side Diff: gm/strokefill.cpp

Issue 256373002: Turn on quilt mode in DM. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 7 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/stringart.cpp ('k') | gm/strokerect.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 "SkCanvas.h" 9 #include "SkCanvas.h"
10 #include "SkPath.h" 10 #include "SkPath.h"
11 #include "SkTypeface.h" 11 #include "SkTypeface.h"
12 12
13 namespace skiagm { 13 namespace skiagm {
14 14
15 class StrokeFillGM : public GM { 15 class StrokeFillGM : public GM {
16 public: 16 public:
17 StrokeFillGM() { 17 StrokeFillGM() {
18 18
19 } 19 }
20 20
21 protected: 21 protected:
22 virtual uint32_t onGetFlags() const SK_OVERRIDE {
23 return kSkipTiled_Flag;
24 }
25
22 virtual SkString onShortName() { 26 virtual SkString onShortName() {
23 return SkString("stroke-fill"); 27 return SkString("stroke-fill");
24 } 28 }
25 29
26 virtual SkISize onISize() { 30 virtual SkISize onISize() {
27 return make_isize(640, 480); 31 return make_isize(640, 480);
28 } 32 }
29 33
30 static void show_bold(SkCanvas* canvas, const void* text, int len, 34 static void show_bold(SkCanvas* canvas, const void* text, int len,
31 SkScalar x, SkScalar y, const SkPaint& paint) { 35 SkScalar x, SkScalar y, const SkPaint& paint) {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 private: 86 private:
83 typedef GM INHERITED; 87 typedef GM INHERITED;
84 }; 88 };
85 89
86 ////////////////////////////////////////////////////////////////////////////// 90 //////////////////////////////////////////////////////////////////////////////
87 91
88 static GM* MyFactory(void*) { return new StrokeFillGM; } 92 static GM* MyFactory(void*) { return new StrokeFillGM; }
89 static GMRegistry reg(MyFactory); 93 static GMRegistry reg(MyFactory);
90 94
91 } 95 }
OLDNEW
« no previous file with comments | « gm/stringart.cpp ('k') | gm/strokerect.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698