skia2/gm/imagesource.cpp
Ben Wagner 7fde8e1728 IWYU for gms.
This almost gets gms to be iwyu clean. The last bit is around gm.cpp
and the tracing framework and its use of atomic. Will also need a way
of keeping things from regressing, which is difficult due to needing to
do this outside-in.

Change-Id: I1393531e99da8b0f1a29f55c53c86d53f459af7d
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/211593
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
2019-05-02 17:48:53 +00:00

100 lines
3.4 KiB
C++

/*
* Copyright 2013 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "gm/gm.h"
#include "include/core/SkBitmap.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkColor.h"
#include "include/core/SkFilterQuality.h"
#include "include/core/SkImage.h"
#include "include/core/SkImageFilter.h"
#include "include/core/SkPaint.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkScalar.h"
#include "include/core/SkSize.h"
#include "include/core/SkString.h"
#include "include/effects/SkImageSource.h"
#include "tools/ToolUtils.h"
#include <utility>
// This GM exercises the SkImageSource ImageFilter class.
static void fill_rect_filtered(SkCanvas* canvas,
const SkRect& clipRect,
sk_sp<SkImageFilter> filter) {
SkPaint paint;
paint.setImageFilter(std::move(filter));
canvas->save();
canvas->clipRect(clipRect);
canvas->drawPaint(paint);
canvas->restore();
}
class ImageSourceGM : public skiagm::GM {
public:
ImageSourceGM() { }
protected:
SkString onShortName() override {
return SkString("imagesource");
}
SkISize onISize() override { return SkISize::Make(500, 150); }
void onOnceBeforeDraw() override {
SkBitmap bm = ToolUtils::create_string_bitmap(100, 100, 0xFFFFFFFF, 20, 70, 96, "e");
fImage = SkImage::MakeFromBitmap(bm);
}
void onDraw(SkCanvas* canvas) override {
canvas->clear(SK_ColorBLACK);
const SkRect srcRect = SkRect::MakeXYWH(20, 20, 30, 30);
const SkRect dstRect = SkRect::MakeXYWH(0, 10, 60, 60);
const SkRect clipRect = SkRect::MakeXYWH(0, 0, 100, 100);
const SkRect bounds = SkRect::MakeIWH(fImage->width(), fImage->height());
{
// Draw an unscaled bitmap.
sk_sp<SkImageFilter> imageSource(SkImageSource::Make(fImage));
fill_rect_filtered(canvas, clipRect, std::move(imageSource));
canvas->translate(SkIntToScalar(100), 0);
}
{
// Draw an unscaled subset of the source bitmap (srcRect -> srcRect).
sk_sp<SkImageFilter> imageSourceSrcRect(
SkImageSource::Make(fImage, srcRect, srcRect, kHigh_SkFilterQuality));
fill_rect_filtered(canvas, clipRect, std::move(imageSourceSrcRect));
canvas->translate(SkIntToScalar(100), 0);
}
{
// Draw a subset of the bitmap scaled to a destination rect (srcRect -> dstRect).
sk_sp<SkImageFilter> imageSourceSrcRectDstRect(
SkImageSource::Make(fImage, srcRect, dstRect, kHigh_SkFilterQuality));
fill_rect_filtered(canvas, clipRect, std::move(imageSourceSrcRectDstRect));
canvas->translate(SkIntToScalar(100), 0);
}
{
// Draw the entire bitmap scaled to a destination rect (bounds -> dstRect).
sk_sp<SkImageFilter> imageSourceDstRectOnly(
SkImageSource::Make(fImage, bounds, dstRect, kHigh_SkFilterQuality));
fill_rect_filtered(canvas, clipRect, std::move(imageSourceDstRectOnly));
canvas->translate(SkIntToScalar(100), 0);
}
}
private:
sk_sp<SkImage> fImage;
typedef GM INHERITED;
};
///////////////////////////////////////////////////////////////////////////////
DEF_GM( return new ImageSourceGM; )