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

Side by Side Diff: gm/circularclips.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/circles.cpp ('k') | gm/coloremoji.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 "SkPath.h" 10 #include "SkPath.h"
11 11
12 namespace skiagm { 12 namespace skiagm {
13 13
14 class CircularClipsGM : public GM { 14 class CircularClipsGM : public GM {
15 public: 15 public:
16 CircularClipsGM() {} 16 CircularClipsGM() {}
17 17
18 protected: 18 protected:
19 virtual uint32_t onGetFlags() const SK_OVERRIDE {
20 return kSkipTiled_Flag;
21 }
22
19 virtual SkString onShortName() { 23 virtual SkString onShortName() {
20 return SkString("circular-clips"); 24 return SkString("circular-clips");
21 } 25 }
22 26
23 virtual SkISize onISize() { 27 virtual SkISize onISize() {
24 return SkISize::Make(800, 600); 28 return SkISize::Make(800, 600);
25 } 29 }
26 30
27 virtual void onDraw(SkCanvas* canvas) { 31 virtual void onDraw(SkCanvas* canvas) {
28 SkRegion::Op ops[] = { 32 SkRegion::Op ops[] = {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 } 73 }
70 74
71 private: 75 private:
72 typedef GM INHERITED; 76 typedef GM INHERITED;
73 }; 77 };
74 78
75 ////////////////////////////////////////////////////////////////////////////// 79 //////////////////////////////////////////////////////////////////////////////
76 80
77 DEF_GM( return new CircularClipsGM; ) 81 DEF_GM( return new CircularClipsGM; )
78 } 82 }
OLDNEW
« no previous file with comments | « gm/circles.cpp ('k') | gm/coloremoji.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698