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

Side by Side Diff: gm/imagealphathreshold.cpp

Issue 1609573002: Fix SkAlphaThresholdFilter bounds handling. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Clear surface to white to fix serialize-8888 config Created 4 years, 11 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 | « no previous file | src/effects/SkAlphaThresholdFilter.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 "SkAlphaThresholdFilter.h" 9 #include "SkAlphaThresholdFilter.h"
10 #include "SkRandom.h" 10 #include "SkRandom.h"
11 #include "SkSurface.h"
11 12
12 #define WIDTH 500 13 #define WIDTH 500
13 #define HEIGHT 500 14 #define HEIGHT 500
14 15
16 namespace {
17
18 void draw_rects(SkCanvas* canvas) {
robertphillips 2016/01/19 16:35:15 rectPaint ?
Stephen White 2016/01/19 16:38:29 Done.
19 SkPaint rect_paint;
20 rect_paint.setColor(0xFF0000FF);
21 canvas->drawRect(SkRect::MakeXYWH(0, 0, WIDTH / 2, HEIGHT / 2), rect_paint);
22 rect_paint.setColor(0xBFFF0000);
23 canvas->drawRect(SkRect::MakeXYWH(WIDTH / 2, 0, WIDTH / 2, HEIGHT / 2), rect _paint);
24 rect_paint.setColor(0x3F00FF00);
25 canvas->drawRect(SkRect::MakeXYWH(0, HEIGHT / 2, WIDTH / 2, HEIGHT / 2), rec t_paint);
26 rect_paint.setColor(0x00000000);
27 canvas->drawRect(SkRect::MakeXYWH(WIDTH / 2, HEIGHT / 2, WIDTH / 2, HEIGHT / 2), rect_paint);
28 }
29
30 SkPaint create_filter_paint() {
31 SkIRect rects[2];
32 rects[0] = SkIRect::MakeXYWH(0, 150, WIDTH, HEIGHT - 300);
33 rects[1] = SkIRect::MakeXYWH(150, 0, WIDTH - 300, HEIGHT);
34 SkRegion region;
35 region.setRects(rects, 2);
36
37 SkPaint paint;
robertphillips 2016/01/19 16:35:15 Can this be on one line ?
Stephen White 2016/01/19 16:38:29 Done.
38 paint.setImageFilter(
39 SkAlphaThresholdFilter::Create(region, 0.2f, 0.7f))->unref();
40 return paint;
41 }
42
43 };
44
15 namespace skiagm { 45 namespace skiagm {
16 46
17 class ImageAlphaThresholdGM : public GM { 47 class ImageAlphaThresholdGM : public GM {
18 public: 48 public:
19 ImageAlphaThresholdGM() { 49 ImageAlphaThresholdGM() {
20 this->setBGColor(0xFFFFFFFF); 50 this->setBGColor(0xFFFFFFFF);
21 } 51 }
22 52
23 protected: 53 protected:
24 54
25 SkString onShortName() override { 55 SkString onShortName() override {
26 return SkString("imagealphathreshold"); 56 return SkString("imagealphathreshold");
27 } 57 }
28 58
29 SkISize onISize() override { 59 SkISize onISize() override {
30 return SkISize::Make(WIDTH, HEIGHT); 60 return SkISize::Make(WIDTH, HEIGHT);
31 } 61 }
32 62
33 void onDraw(SkCanvas* canvas) override { 63 void onDraw(SkCanvas* canvas) override {
34 SkIRect rects[2];
35 rects[0] = SkIRect::MakeXYWH(0, 150, WIDTH, HEIGHT - 300);
36 rects[1] = SkIRect::MakeXYWH(150, 0, WIDTH - 300, HEIGHT);
37 SkRegion region;
38 region.setRects(rects, 2);
39
40 SkMatrix matrix; 64 SkMatrix matrix;
41 matrix.reset(); 65 matrix.reset();
42 matrix.setTranslate(WIDTH * .1f, HEIGHT * .1f); 66 matrix.setTranslate(WIDTH * .1f, HEIGHT * .1f);
43 matrix.postScale(.8f, .8f); 67 matrix.postScale(.8f, .8f);
44 68
45 canvas->concat(matrix); 69 canvas->concat(matrix);
46 70
47 SkPaint paint; 71 SkPaint paint = create_filter_paint();
48 paint.setImageFilter(
49 SkAlphaThresholdFilter::Create(region, 0.2f, 0.7f))->unref();
50 canvas->saveLayer(nullptr, &paint); 72 canvas->saveLayer(nullptr, &paint);
51 paint.setAntiAlias(true); 73 draw_rects(canvas);
52
53 SkPaint rect_paint;
54 rect_paint.setColor(0xFF0000FF);
55 canvas->drawRect(SkRect::MakeXYWH(0, 0, WIDTH / 2, HEIGHT / 2),
56 rect_paint);
57 rect_paint.setColor(0xBFFF0000);
58 canvas->drawRect(SkRect::MakeXYWH(WIDTH / 2, 0, WIDTH / 2, HEIGHT / 2),
59 rect_paint);
60 rect_paint.setColor(0x3F00FF00);
61 canvas->drawRect(SkRect::MakeXYWH(0, HEIGHT / 2, WIDTH / 2, HEIGHT / 2),
62 rect_paint);
63 rect_paint.setColor(0x00000000);
64 canvas->drawRect(SkRect::MakeXYWH(WIDTH / 2, HEIGHT / 2, WIDTH / 2, HEIG HT / 2),
65 rect_paint);
66 74
67 canvas->restore(); 75 canvas->restore();
68 } 76 }
69 77
70 private: 78 private:
71 typedef GM INHERITED; 79 typedef GM INHERITED;
72 }; 80 };
73 81
82 class ImageAlphaThresholdSurfaceGM : public GM {
83 public:
84 ImageAlphaThresholdSurfaceGM() {
85 this->setBGColor(0xFFFFFFFF);
86 }
87
88 protected:
89 SkString onShortName() override {
90 return SkString("imagealphathreshold_surface");
91 }
92
93 SkISize onISize() override {
94 return SkISize::Make(WIDTH, HEIGHT);
95 }
96
97 void onDraw(SkCanvas* canvas) override {
98 SkImageInfo info = SkImageInfo::MakeN32(WIDTH, HEIGHT, kOpaque_SkAlphaTy pe);
99 SkAutoTUnref<SkSurface> surface(canvas->newSurface(info));
100 if (nullptr == surface) {
101 surface.reset(SkSurface::NewRaster(info));
102 }
103 surface->getCanvas()->clear(SK_ColorWHITE);
104 draw_rects(surface->getCanvas());
105
106 SkAutoTUnref<SkImage> image(surface->newImageSnapshot());
107 SkPaint paint = create_filter_paint();
108 canvas->clipRect(SkRect::MakeLTRB(100, 100, WIDTH - 100, HEIGHT - 100));
109 canvas->drawImage(image, 0, 0, &paint);
110 }
111
112 private:
113 typedef GM INHERITED;
114 };
115
74 ////////////////////////////////////////////////////////////////////////////// 116 //////////////////////////////////////////////////////////////////////////////
75 117
76 static GM* MyFactory(void*) { return new ImageAlphaThresholdGM; } 118 DEF_GM(return new ImageAlphaThresholdGM();)
77 static GMRegistry reg(MyFactory); 119 DEF_GM(return new ImageAlphaThresholdSurfaceGM();)
78 120
79 } 121 }
OLDNEW
« no previous file with comments | « no previous file | src/effects/SkAlphaThresholdFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698