blob: 45f9b575823a972a995af8e7110c549c257596d2 [file] [log] [blame]
Robert Phillips8bb3b212017-02-06 12:32:55 -05001/*
2 * Copyright 2017 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkBitmap.h"
10#include "include/core/SkCanvas.h"
11#include "include/core/SkColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkColorPriv.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040013#include "include/core/SkImage.h"
14#include "include/core/SkImageFilter.h"
15#include "include/core/SkImageInfo.h"
16#include "include/core/SkPaint.h"
17#include "include/core/SkPoint.h"
18#include "include/core/SkRect.h"
19#include "include/core/SkRefCnt.h"
20#include "include/core/SkSize.h"
21#include "include/core/SkString.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050022#include "include/core/SkSurface.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040023#include "include/core/SkTypes.h"
Michael Ludwig898bbfa2019-08-02 15:21:23 -040024#include "include/effects/SkImageFilters.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040025#include "include/gpu/GrTypes.h"
26
27#include <utility>
28
29class GrContext;
Robert Phillips8bb3b212017-02-06 12:32:55 -050030
31static sk_sp<SkImage> make_image(GrContext* context, int size, GrSurfaceOrigin origin) {
32 if (context) {
33 SkImageInfo ii = SkImageInfo::Make(size, size, kN32_SkColorType, kPremul_SkAlphaType);
34 sk_sp<SkSurface> surf(SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, ii, 0,
35 origin, nullptr));
Mike Klein290690c2019-04-02 18:11:57 -040036 if (surf) {
37 SkCanvas* canvas = surf->getCanvas();
38
39 canvas->clear(SK_ColorRED);
40 const struct {
41 SkPoint fPt;
42 SkColor fColor;
43 } rec[] = {
44 { { 1.5f, 1.5f }, SK_ColorGREEN },
45 { { 2.5f, 1.5f }, SK_ColorBLUE },
46 { { 1.5f, 2.5f }, SK_ColorCYAN },
47 { { 2.5f, 2.5f }, SK_ColorGRAY },
48 };
49 SkPaint paint;
50 for (const auto& r : rec) {
51 paint.setColor(r.fColor);
52 canvas->drawPoints(SkCanvas::kPoints_PointMode, 1, &r.fPt, paint);
53 }
54 return surf->makeImageSnapshot();
Robert Phillips92d20a02017-02-09 12:22:21 -050055 }
Robert Phillips8bb3b212017-02-06 12:32:55 -050056 }
Mike Klein290690c2019-04-02 18:11:57 -040057
58 SkBitmap bm;
59 bm.allocN32Pixels(size, size);
60 bm.eraseColor(SK_ColorRED);
61 *bm.getAddr32(1, 1) = SkPackARGB32(0xFF, 0x00, 0xFF, 0x00);
62 *bm.getAddr32(2, 1) = SkPackARGB32(0xFF, 0x00, 0x00, 0xFF);
63 *bm.getAddr32(1, 2) = SkPackARGB32(0xFF, 0x00, 0xFF, 0xFF);
64 *bm.getAddr32(2, 2) = SkPackARGB32(0xFF, 0x88, 0x88, 0x88);
65 return SkImage::MakeFromBitmap(bm);
Robert Phillips8bb3b212017-02-06 12:32:55 -050066}
67
68/*
69 * This GM creates an image with a 2x2:
70 * Green | Blue
71 * ------------
72 * Cyan | Gray
73 * block of pixels in one corner of a 33x33 field. The 'srcRect' feature of the
74 * SkMagnifierImageFilter is then used to blow it up with different inset border widths.
75 *
76 * In GPU-mode we wind up drawing 4 rects:
77 *
78 * BottomLeft origin + 1-wide inset | TopLeft origin + 1-wide inset
79 * ----------------------------------------------------------------
80 * BottomLeft origin + 7-wide inset | TopLeft origin + 7-wide inset
81 *
82 * In Raster-mode the source origin isn't used.
83 */
84class SimpleMagnificationGM : public skiagm::GM {
85public:
86 SimpleMagnificationGM() {
Mike Kleind46dce32018-08-16 10:17:03 -040087 this->setBGColor(0xFFCCCCCC);
Robert Phillips8bb3b212017-02-06 12:32:55 -050088 }
89
90protected:
91 SkString onShortName() override {
92 return SkString("simple-magnification");
93 }
94
95 SkISize onISize() override {
96 return SkISize::Make(3*kPad+2*kImgSize, 3*kPad+2*kImgSize);
97 }
98
99 void draw(SkCanvas* canvas, sk_sp<SkImage> image, const SkIPoint& offset, int inset) {
Michael Ludwig898bbfa2019-08-02 15:21:23 -0400100 sk_sp<SkImageFilter> imgSrc(SkImageFilters::Image(std::move(image)));
Robert Phillips8bb3b212017-02-06 12:32:55 -0500101
102 SkRect srcRect = SkRect::MakeXYWH(1.0f, 1.0f, 2.0f, 2.0f);
Michael Ludwig898bbfa2019-08-02 15:21:23 -0400103 sk_sp<SkImageFilter> magFilter(SkImageFilters::Magnifier(srcRect, inset, imgSrc));
Robert Phillips8bb3b212017-02-06 12:32:55 -0500104
105 SkPaint paint;
106 paint.setImageFilter(std::move(magFilter));
107
108 canvas->save();
109 canvas->translate(offset.fX, offset.fY);
110 SkRect rect = SkRect::MakeWH(kImgSize, kImgSize);
111 canvas->drawRect(rect, paint);
112
113 canvas->restore();
114 }
115
Chris Dalton50e24d72019-02-07 16:20:09 -0700116 DrawResult onDraw(SkCanvas* canvas, SkString* errorMsg) override {
Robert Phillips8bb3b212017-02-06 12:32:55 -0500117 GrContext* context = canvas->getGrContext();
118
119 sk_sp<SkImage> bottomLImg = make_image(context, kImgSize, kBottomLeft_GrSurfaceOrigin);
120 sk_sp<SkImage> topLImg = make_image(context, kImgSize, kTopLeft_GrSurfaceOrigin);
Robert Phillips92d20a02017-02-09 12:22:21 -0500121 if (!bottomLImg || !topLImg) {
Chris Dalton50e24d72019-02-07 16:20:09 -0700122 *errorMsg = "Could not load images. Did you forget to set the resourcePath?";
123 return DrawResult::kFail;
Robert Phillips92d20a02017-02-09 12:22:21 -0500124 }
Robert Phillips8bb3b212017-02-06 12:32:55 -0500125
126 int bigOffset = 2 * kPad + kImgSize;
127
128 this->draw(canvas, bottomLImg, SkIPoint::Make(kPad, kPad), 1);
129 this->draw(canvas, topLImg, SkIPoint::Make(bigOffset, kPad), 1);
130 this->draw(canvas, bottomLImg, SkIPoint::Make(kPad, bigOffset), 7);
131 this->draw(canvas, topLImg, SkIPoint::Make(bigOffset, bigOffset), 7);
Chris Dalton50e24d72019-02-07 16:20:09 -0700132 return DrawResult::kOk;
Robert Phillips8bb3b212017-02-06 12:32:55 -0500133 }
134
135private:
136 static const int kImgSize = 33;
137 static const int kPad = 2;
138
139 typedef skiagm::GM INHERITED;
140};
141
142//////////////////////////////////////////////////////////////////////////////
143
144DEF_GM(return new SimpleMagnificationGM;)