aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/simple_magnification.cpp
diff options
context:
space:
mode:
authorGravatar Robert Phillips <robertphillips@google.com>2017-02-06 12:32:55 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-02-07 13:06:48 +0000
commit8bb3b21a4a098e9bfe88209f84d50abf80e39792 (patch)
treec5bab1477824b272444aaee4ed74f883b19df39a /gm/simple_magnification.cpp
parentfd197d503493a1a35bb0da36ac22b18da379f940 (diff)
Add GM to exercise some of the darker corners of SkMagnifierImageFilter
An upcoming CL (https://skia-review.googlesource.com/c/7995/ (Remove asTextureRef from SkSpecialImage & update effects accordingly)) modifies some untested portions of the SkMagnifierImageFilter. This adds a test to prevents regressions. Change-Id: I9fa406f699e39fa393212e7f63a457b015b36edb Reviewed-on: https://skia-review.googlesource.com/8023 Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
Diffstat (limited to 'gm/simple_magnification.cpp')
-rw-r--r--gm/simple_magnification.cpp112
1 files changed, 112 insertions, 0 deletions
diff --git a/gm/simple_magnification.cpp b/gm/simple_magnification.cpp
new file mode 100644
index 0000000000..a0d03953b3
--- /dev/null
+++ b/gm/simple_magnification.cpp
@@ -0,0 +1,112 @@
+/*
+ * Copyright 2017 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "gm.h"
+#include "SkImageSource.h"
+#include "SkMagnifierImageFilter.h"
+#include "SkSurface.h"
+
+static sk_sp<SkImage> make_image(GrContext* context, int size, GrSurfaceOrigin origin) {
+ if (context) {
+ SkImageInfo ii = SkImageInfo::Make(size, size, kN32_SkColorType, kPremul_SkAlphaType);
+ sk_sp<SkSurface> surf(SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, ii, 0,
+ origin, nullptr));
+
+ SkCanvas* canvas = surf->getCanvas();
+
+ canvas->clear(SK_ColorRED);
+ canvas->drawPoint(1.5f, 1.5f, SK_ColorGREEN);
+ canvas->drawPoint(2.5f, 1.5f, SK_ColorBLUE);
+ canvas->drawPoint(1.5f, 2.5f, SK_ColorCYAN);
+ canvas->drawPoint(2.5f, 2.5f, SK_ColorGRAY);
+
+ return surf->makeImageSnapshot();
+ } else {
+ SkBitmap bm;
+ bm.allocN32Pixels(size, size);
+ bm.eraseRGB(255, 0, 0);
+ *bm.getAddr32(1, 1) = SkPackARGB32(0xFF, 0x00, 0xFF, 0x00);
+ *bm.getAddr32(2, 1) = SkPackARGB32(0xFF, 0x00, 0x00, 0xFF);
+ *bm.getAddr32(1, 2) = SkPackARGB32(0xFF, 0x00, 0xFF, 0xFF);
+ *bm.getAddr32(2, 2) = SkPackARGB32(0xFF, 0x88, 0x88, 0x88);
+
+ return SkImage::MakeFromBitmap(bm);
+ }
+}
+
+/*
+ * This GM creates an image with a 2x2:
+ * Green | Blue
+ * ------------
+ * Cyan | Gray
+ * block of pixels in one corner of a 33x33 field. The 'srcRect' feature of the
+ * SkMagnifierImageFilter is then used to blow it up with different inset border widths.
+ *
+ * In GPU-mode we wind up drawing 4 rects:
+ *
+ * BottomLeft origin + 1-wide inset | TopLeft origin + 1-wide inset
+ * ----------------------------------------------------------------
+ * BottomLeft origin + 7-wide inset | TopLeft origin + 7-wide inset
+ *
+ * In Raster-mode the source origin isn't used.
+ */
+class SimpleMagnificationGM : public skiagm::GM {
+public:
+ SimpleMagnificationGM() {
+ this->setBGColor(sk_tool_utils::color_to_565(0xFFCCCCCC));
+ }
+
+protected:
+ SkString onShortName() override {
+ return SkString("simple-magnification");
+ }
+
+ SkISize onISize() override {
+ return SkISize::Make(3*kPad+2*kImgSize, 3*kPad+2*kImgSize);
+ }
+
+ void draw(SkCanvas* canvas, sk_sp<SkImage> image, const SkIPoint& offset, int inset) {
+ sk_sp<SkImageFilter> imgSrc(SkImageSource::Make(std::move(image)));
+
+ SkRect srcRect = SkRect::MakeXYWH(1.0f, 1.0f, 2.0f, 2.0f);
+ sk_sp<SkImageFilter> magFilter(SkMagnifierImageFilter::Make(srcRect, inset, imgSrc));
+
+ SkPaint paint;
+ paint.setImageFilter(std::move(magFilter));
+
+ canvas->save();
+ canvas->translate(offset.fX, offset.fY);
+ SkRect rect = SkRect::MakeWH(kImgSize, kImgSize);
+ canvas->drawRect(rect, paint);
+
+ canvas->restore();
+ }
+
+ void onDraw(SkCanvas* canvas) override {
+ GrContext* context = canvas->getGrContext();
+
+ sk_sp<SkImage> bottomLImg = make_image(context, kImgSize, kBottomLeft_GrSurfaceOrigin);
+ sk_sp<SkImage> topLImg = make_image(context, kImgSize, kTopLeft_GrSurfaceOrigin);
+
+ int bigOffset = 2 * kPad + kImgSize;
+
+ this->draw(canvas, bottomLImg, SkIPoint::Make(kPad, kPad), 1);
+ this->draw(canvas, topLImg, SkIPoint::Make(bigOffset, kPad), 1);
+ this->draw(canvas, bottomLImg, SkIPoint::Make(kPad, bigOffset), 7);
+ this->draw(canvas, topLImg, SkIPoint::Make(bigOffset, bigOffset), 7);
+ }
+
+private:
+ static const int kImgSize = 33;
+ static const int kPad = 2;
+
+ typedef skiagm::GM INHERITED;
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+DEF_GM(return new SimpleMagnificationGM;)