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

Side by Side Diff: gm/lerpmode.cpp

Issue 371023005: Add always-threaded SkRecord quilt tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: bigger tile -> more GMs can quilt Created 6 years, 5 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/gradtext.cpp ('k') | gm/ninepatchstretch.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
46 virtual SkString onShortName() SK_OVERRIDE { 42 virtual SkString onShortName() SK_OVERRIDE {
47 return SkString("lerpmode"); 43 return SkString("lerpmode");
48 } 44 }
49 45
50 virtual SkISize onISize() SK_OVERRIDE { 46 virtual SkISize onISize() SK_OVERRIDE {
51 return SkISize::Make(240, 120); 47 return SkISize::Make(240, 120);
52 } 48 }
53 49
54 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { 50 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
55 show_circlelayers(canvas, NULL); 51 show_circlelayers(canvas, NULL);
56 canvas->translate(150, 0); 52 canvas->translate(150, 0);
57 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f)); 53 SkAutoTUnref<SkXfermode> mode(SkLerpXfermode::Create(0.5f));
58 show_circlelayers(canvas, mode.get()); 54 show_circlelayers(canvas, mode.get());
59 } 55 }
60 56
61 private: 57 private:
62 typedef skiagm::GM INHERITED; 58 typedef skiagm::GM INHERITED;
63 }; 59 };
64 60
65 ////////////////////////////////////////////////////////////////////////////// 61 //////////////////////////////////////////////////////////////////////////////
66 62
67 DEF_GM( return SkNEW(LerpXfermodeGM); ) 63 DEF_GM( return SkNEW(LerpXfermodeGM); )
OLDNEW
« no previous file with comments | « gm/gradtext.cpp ('k') | gm/ninepatchstretch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698