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

Side by Side Diff: gm/lerpmode.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/inversepaths.cpp ('k') | gm/lighting.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 "SkLerpXfermode.h" 10 #include "SkLerpXfermode.h"
(...skipping 21 matching lines...) Expand all
32 canvas->drawOval(r, paint); 32 canvas->drawOval(r, paint);
33 33
34 canvas->restore(); 34 canvas->restore();
35 } 35 }
36 36
37 class LerpXfermodeGM : public skiagm::GM { 37 class LerpXfermodeGM : public skiagm::GM {
38 public: 38 public:
39 LerpXfermodeGM() {} 39 LerpXfermodeGM() {}
40 40
41 protected: 41 protected:
42 virtual uint32_t onGetFlags() const SK_OVERRIDE {
43 return kSkipTiled_Flag;
44 }
45
42 virtual SkString onShortName() SK_OVERRIDE { 46 virtual SkString onShortName() SK_OVERRIDE {
43 return SkString("lerpmode"); 47 return SkString("lerpmode");
44 } 48 }
45 49
46 virtual SkISize onISize() SK_OVERRIDE { 50 virtual SkISize onISize() SK_OVERRIDE {
47 return SkISize::Make(240, 120); 51 return SkISize::Make(240, 120);
48 } 52 }
49 53
50 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 54 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
51 show_circlelayers(canvas, NULL); 55 show_circlelayers(canvas, NULL);
52 canvas->translate(150, 0); 56 canvas->translate(150, 0);
53 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f)); 57 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f));
54 show_circlelayers(canvas, mode.get()); 58 show_circlelayers(canvas, mode.get());
55 } 59 }
56 60
57 private: 61 private:
58 typedef skiagm::GM INHERITED; 62 typedef skiagm::GM INHERITED;
59 }; 63 };
60 64
61 ////////////////////////////////////////////////////////////////////////////// 65 //////////////////////////////////////////////////////////////////////////////
62 66
63 DEF_GM( return SkNEW(LerpXfermodeGM); ) 67 DEF_GM( return SkNEW(LerpXfermodeGM); )
OLDNEW
« no previous file with comments | « gm/inversepaths.cpp ('k') | gm/lighting.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698