2013-12-12 23:28:52 +00:00
|
|
|
/*
|
|
|
|
* 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.h"
|
|
|
|
|
|
|
|
#include "SkPictureImageFilter.h"
|
2014-04-18 18:04:41 +00:00
|
|
|
#include "SkPictureRecorder.h"
|
2013-12-12 23:28:52 +00:00
|
|
|
|
|
|
|
// This GM exercises the SkPictureImageFilter ImageFilter class.
|
|
|
|
|
|
|
|
class PictureImageFilterGM : public skiagm::GM {
|
|
|
|
public:
|
|
|
|
PictureImageFilterGM() {
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2013-12-12 23:28:52 +00:00
|
|
|
return SkString("pictureimagefilter");
|
|
|
|
}
|
|
|
|
|
|
|
|
void makePicture() {
|
2014-04-13 19:09:42 +00:00
|
|
|
SkPictureRecorder recorder;
|
2014-04-17 23:35:06 +00:00
|
|
|
SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
|
2015-04-08 19:36:08 +00:00
|
|
|
canvas->clear(SK_ColorBLACK);
|
2013-12-12 23:28:52 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2014-07-31 12:58:44 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&paint);
|
2013-12-12 23:28:52 +00:00
|
|
|
paint.setColor(0xFFFFFFFF);
|
|
|
|
paint.setTextSize(SkIntToScalar(96));
|
|
|
|
const char* str = "e";
|
|
|
|
canvas->drawText(str, strlen(str), SkIntToScalar(20), SkIntToScalar(70), paint);
|
2014-04-13 19:09:42 +00:00
|
|
|
fPicture.reset(recorder.endRecording());
|
2013-12-12 23:28:52 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override { return SkISize::Make(600, 300); }
|
2013-12-12 23:28:52 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onOnceBeforeDraw() override {
|
2013-12-12 23:28:52 +00:00
|
|
|
this->makePicture();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fillRectFiltered(SkCanvas* canvas, const SkRect& clipRect, SkImageFilter* filter) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setImageFilter(filter);
|
|
|
|
canvas->save();
|
|
|
|
canvas->clipRect(clipRect);
|
|
|
|
canvas->drawPaint(paint);
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2015-04-08 19:36:08 +00:00
|
|
|
canvas->clear(SK_ColorBLACK);
|
2013-12-12 23:28:52 +00:00
|
|
|
{
|
|
|
|
SkRect srcRect = SkRect::MakeXYWH(20, 20, 30, 30);
|
|
|
|
SkRect emptyRect = SkRect::MakeXYWH(20, 20, 0, 0);
|
|
|
|
SkRect bounds = SkRect::MakeXYWH(0, 0, 100, 100);
|
2014-12-02 19:50:56 +00:00
|
|
|
SkAutoTUnref<SkPictureImageFilter> pictureSource(
|
|
|
|
SkPictureImageFilter::Create(fPicture));
|
|
|
|
SkAutoTUnref<SkPictureImageFilter> pictureSourceSrcRect(
|
|
|
|
SkPictureImageFilter::Create(fPicture, srcRect));
|
|
|
|
SkAutoTUnref<SkPictureImageFilter> pictureSourceEmptyRect(
|
|
|
|
SkPictureImageFilter::Create(fPicture, emptyRect));
|
|
|
|
SkAutoTUnref<SkPictureImageFilter> pictureSourceResampled(
|
2014-12-09 21:07:22 +00:00
|
|
|
SkPictureImageFilter::CreateForLocalSpace(fPicture, fPicture->cullRect(),
|
2015-03-16 17:08:34 +00:00
|
|
|
kLow_SkFilterQuality));
|
2014-12-09 21:07:22 +00:00
|
|
|
SkAutoTUnref<SkPictureImageFilter> pictureSourcePixelated(
|
|
|
|
SkPictureImageFilter::CreateForLocalSpace(fPicture, fPicture->cullRect(),
|
2015-03-16 17:08:34 +00:00
|
|
|
kNone_SkFilterQuality));
|
2014-12-02 19:50:56 +00:00
|
|
|
|
|
|
|
canvas->save();
|
2013-12-12 23:28:52 +00:00
|
|
|
// Draw the picture unscaled.
|
|
|
|
fillRectFiltered(canvas, bounds, pictureSource);
|
|
|
|
canvas->translate(SkIntToScalar(100), 0);
|
|
|
|
|
|
|
|
// Draw an unscaled subset of the source picture.
|
|
|
|
fillRectFiltered(canvas, bounds, pictureSourceSrcRect);
|
|
|
|
canvas->translate(SkIntToScalar(100), 0);
|
|
|
|
|
|
|
|
// Draw the picture to an empty rect (should draw nothing).
|
|
|
|
fillRectFiltered(canvas, bounds, pictureSourceEmptyRect);
|
|
|
|
canvas->translate(SkIntToScalar(100), 0);
|
2014-12-02 19:50:56 +00:00
|
|
|
|
|
|
|
canvas->restore();
|
|
|
|
|
|
|
|
// Draw the picture scaled
|
|
|
|
canvas->translate(0, SkIntToScalar(100));
|
|
|
|
canvas->scale(200 / srcRect.width(), 200 / srcRect.height());
|
|
|
|
canvas->translate(-srcRect.fLeft, -srcRect.fTop);
|
|
|
|
fillRectFiltered(canvas, srcRect, pictureSource);
|
|
|
|
|
|
|
|
// Draw the picture scaled, but rasterized at original resolution
|
|
|
|
canvas->translate(srcRect.width(), 0);
|
|
|
|
fillRectFiltered(canvas, srcRect, pictureSourceResampled);
|
2014-12-09 21:07:22 +00:00
|
|
|
|
|
|
|
// Draw the picture scaled, pixelated
|
|
|
|
canvas->translate(srcRect.width(), 0);
|
|
|
|
fillRectFiltered(canvas, srcRect, pictureSourcePixelated);
|
2013-12-12 23:28:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2014-04-13 19:09:42 +00:00
|
|
|
SkAutoTUnref<SkPicture> fPicture;
|
2013-12-12 23:28:52 +00:00
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
DEF_GM( return new PictureImageFilterGM; )
|