blob: 13a0ffa90b404fcf2a1c8c098940107ff5b1b2e5 [file] [log] [blame]
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkAlphaThresholdFilter.h"
10#include "SkRandom.h"
11
12#define WIDTH 500
13#define HEIGHT 500
14
15namespace skiagm {
16
17class ImageAlphaThresholdGM : public GM {
18public:
19 ImageAlphaThresholdGM() {
20 this->setBGColor(0xFFFFFFFF);
21 }
22
23protected:
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000024
mtklein36352bf2015-03-25 18:17:31 -070025 SkString onShortName() override {
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000026 return SkString("imagealphathreshold");
27 }
28
mtklein36352bf2015-03-25 18:17:31 -070029 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070030 return SkISize::Make(WIDTH, HEIGHT);
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000031 }
32
mtklein36352bf2015-03-25 18:17:31 -070033 void onDraw(SkCanvas* canvas) override {
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000034 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;
41 matrix.reset();
42 matrix.setTranslate(WIDTH * .1f, HEIGHT * .1f);
commit-bot@chromium.org9109e182014-01-07 16:04:01 +000043 matrix.postScale(.8f, .8f);
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000044
45 canvas->concat(matrix);
46
47 SkPaint paint;
48 paint.setImageFilter(
49 SkAlphaThresholdFilter::Create(region, 0.2f, 0.7f))->unref();
halcanary96fcdcc2015-08-27 07:41:13 -070050 canvas->saveLayer(nullptr, &paint);
commit-bot@chromium.org40eb3c12014-01-06 23:41:14 +000051 paint.setAntiAlias(true);
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, HEIGHT / 2),
65 rect_paint);
66
67 canvas->restore();
68 }
69
70private:
71 typedef GM INHERITED;
72};
73
74//////////////////////////////////////////////////////////////////////////////
75
76static GM* MyFactory(void*) { return new ImageAlphaThresholdGM; }
77static GMRegistry reg(MyFactory);
78
79}