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

Side by Side Diff: gm/linepaths.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/lighting.cpp ('k') | gm/lumafilter.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 #include "gm.h" 7 #include "gm.h"
8 #include "SkCanvas.h" 8 #include "SkCanvas.h"
9 #include "SkPaint.h" 9 #include "SkPaint.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 11
12 namespace skiagm { 12 namespace skiagm {
13 13
14 class LinePathGM : public GM { 14 class LinePathGM : public GM {
15 public: 15 public:
16 LinePathGM() {} 16 LinePathGM() {}
17 17
18 protected: 18 protected:
19 virtual uint32_t onGetFlags() const SK_OVERRIDE {
20 return kSkipTiled_Flag;
21 }
22
19 SkString onShortName() { 23 SkString onShortName() {
20 return SkString("linepath"); 24 return SkString("linepath");
21 } 25 }
22 26
23 SkISize onISize() { return make_isize(1240, 390); } 27 SkISize onISize() { return make_isize(1240, 390); }
24 28
25 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color, 29 void drawPath(SkPath& path,SkCanvas* canvas,SkColor color,
26 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join, 30 const SkRect& clip,SkPaint::Cap cap, SkPaint::Join join,
27 SkPaint::Style style, SkPath::FillType fill, 31 SkPaint::Style style, SkPath::FillType fill,
28 SkScalar strokeWidth) { 32 SkScalar strokeWidth) {
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 300
297 ////////////////////////////////////////////////////////////////////////////// 301 //////////////////////////////////////////////////////////////////////////////
298 302
299 static GM* LinePathFactory(void*) { return new LinePathGM; } 303 static GM* LinePathFactory(void*) { return new LinePathGM; }
300 static GMRegistry regLinePath(LinePathFactory); 304 static GMRegistry regLinePath(LinePathFactory);
301 305
302 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; } 306 static GM* LineClosePathFactory(void*) { return new LineClosePathGM; }
303 static GMRegistry regLineClosePath(LineClosePathFactory); 307 static GMRegistry regLineClosePath(LineClosePathFactory);
304 308
305 } 309 }
OLDNEW
« no previous file with comments | « gm/lighting.cpp ('k') | gm/lumafilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698